diff --git a/docs/content/1.guide/0.getting-started.md b/docs/content/1.guide/0.getting-started.md index e1cc8f8cd5..4b42331bc6 100644 --- a/docs/content/1.guide/0.getting-started.md +++ b/docs/content/1.guide/0.getting-started.md @@ -85,3 +85,22 @@ You can try it locally with: npm run preview ``` + +### Edge Release Channel + +Nitro offers an edge release channel that automatically releases for every commit to `main` branch. + +You can opt-in to the edge release channel by updating your `package.json`: + +```diff +{ + "devDependencies": { +-- "nitropack": "^2.0.0" +++ "nitropack": "npm:nitropack-edge@latest" + } +} +``` + +Remove an lockfile (`package-lock.json`, `yarn.lock`, or `pnpm-lock.yaml`) and reinstall the dependencies. + +