diff --git a/docs/1.guide/2.routing.md b/docs/1.guide/2.routing.md index 7e5fd6e558..53d6643b69 100644 --- a/docs/1.guide/2.routing.md +++ b/docs/1.guide/2.routing.md @@ -157,9 +157,6 @@ export default defineEventHandler(event => { ### Environment specific handlers -> [!NOTE] -> This feature is currently available in [nightly channel](https://nitro.build/guide/nightly) only. - You can specify for a route that will only be included in specific builds by adding a `.dev`, `.prod` or `.prerender` suffix to the file name, for example: `routes/test.get.dev.ts` or `routes/test.get.prod.ts`. > [!TIP] @@ -210,8 +207,8 @@ Returning anything from a middleware will close the request and should be avoide You can define route handler meta at build-time using `defineRouteMeta` micro in the event handler files. -> [!NOTE] -> This feature is currently available in [nightly channel](https://nitro.build/guide/nightly) only. +> [!IMPORTANT] +> 🚧 This feature is currently experimental. ```ts [/api/test.ts] defineRouteMeta({ diff --git a/docs/2.deploy/10.runtimes/_winterjs.md b/docs/2.deploy/10.runtimes/_winterjs.md index 9dd925a471..8a84ade019 100644 --- a/docs/2.deploy/10.runtimes/_winterjs.md +++ b/docs/2.deploy/10.runtimes/_winterjs.md @@ -11,11 +11,6 @@ You can easily build Nitro powered applications to run with [wasmerio/winterjs]( [WinterJS](https://github.com/wasmerio/winterjs) is a JavaScript Service Workers server written in Rust, that uses the SpiderMonkey runtime to execute JavaScript (the same runtime that Firefox uses) ([announcement](https://wasmer.io/posts/announcing-winterjs-service-workers)). -::warning -🌙 WinterJS is currently supported in **nightly release channel**. Read the docs for using [Nightly Release Channel](/guide/getting-started#nightly-release-channel). -:: - - ::warning 🚧 WinterJS runtime is unstable and under heavy development. Follow [nitrojs/nitro#1861](https://github.com/nitrojs/nitro/issues/1861) for status and information. :: diff --git a/docs/2.deploy/20.providers/aws.md b/docs/2.deploy/20.providers/aws.md index 713687d04f..61b0a65a18 100644 --- a/docs/2.deploy/20.providers/aws.md +++ b/docs/2.deploy/20.providers/aws.md @@ -41,17 +41,16 @@ export default defineNuxtConfig({ :: -## Streaming support (experimental) - -**Preset:** `aws_lambda_streaming` - -Nitro supports an experimental preset to generate output format compatible with [AWS Lambda](https://aws.amazon.com/lambda/) with streaming invoke turned on. +## Response streaming :read-more{title="Introducing AWS Lambda response streaming" to="https://aws.amazon.com/blogs/compute/introducing-aws-lambda-response-streaming/"} -> [!NOTE] -> This preset available via [nightly channel](https://nitro.build/guide/nightly) to try. - -> [!IMPORTANT] -> This preset is not production ready and might be renamed! Please don't advice users or document to indirectly use it. +In order to enable response streaming, enable `awsLambda.streaming` flag: +```ts [nitro.config.ts] +export default defineNitroConfig({ + awsLambda: { + streaming: true + } +}); +``` diff --git a/docs/2.deploy/20.providers/genezio.md b/docs/2.deploy/20.providers/genezio.md index ab88b0f809..206ec1fa1c 100644 --- a/docs/2.deploy/20.providers/genezio.md +++ b/docs/2.deploy/20.providers/genezio.md @@ -6,9 +6,8 @@ :read-more{title="Genezio" to="https://genezio.com"} -> [!NOTE] -> This preset available via [nightly channel](https://nitro.build/guide/nightly) to try. - +> [!IMPORTANT] +> 🚧 This preset is currently experimental. ## 1. Project Setup diff --git a/docs/2.deploy/20.providers/vercel.md b/docs/2.deploy/20.providers/vercel.md index c9c73e8857..bfb797a5f8 100644 --- a/docs/2.deploy/20.providers/vercel.md +++ b/docs/2.deploy/20.providers/vercel.md @@ -148,9 +148,6 @@ To revalidate a page on demand: ### Fine-grained ISR config via route rules -> [!IMPORTANT] -> Fine-grained ISR config is currently possible by using the [nightly channel](https://nitro.build/guide/nightly). - By default, query paramas are ignored by cache. You can pass an options object to `isr` route rule to configure caching behavior. diff --git a/docs/2.deploy/20.providers/zerops.md b/docs/2.deploy/20.providers/zerops.md index eb1df2d2e5..b623c97875 100644 --- a/docs/2.deploy/20.providers/zerops.md +++ b/docs/2.deploy/20.providers/zerops.md @@ -6,8 +6,8 @@ :read-more{title="zerops.io" to="https://zerops.io"} -> [!NOTE] -> This preset available via [nightly channel](https://nitro.build/guide/nightly) to try. +> [!IMPORTANT] +> 🚧 This preset is currently experimental. Zerops supports deploying both static and server-side rendered apps with a simple configuration file in your project root. diff --git a/docs/3.config/0.index.md b/docs/3.config/0.index.md index cc1b8ce805..901f0018b0 100644 --- a/docs/3.config/0.index.md +++ b/docs/3.config/0.index.md @@ -42,9 +42,6 @@ Enable experimental features. Enable `/_nitro/scalar`, `/_nitro/swagger` and `/_nitro/openapi.json` endpoints. -> [!IMPORTANT] -> These endpoints are moving to `/_scalar`, `/_swagger` and `/_openapi.json` in [nightly channel](/guide/nightly) and [nitro v3](https://github.com/nitrojs/nitro/pull/2521). - - Default: `false` You can pass an object on the root level to modify your OpenAPI specification: