diff --git a/CHANGELOG.md b/CHANGELOG.md index e69de29bb2d..cfb9074650c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -0,0 +1 @@ +- Increase supported range for Next.js to version 16.0 (#9463) diff --git a/src/frameworks/next/index.ts b/src/frameworks/next/index.ts index b381fbba157..f93e3afadf7 100644 --- a/src/frameworks/next/index.ts +++ b/src/frameworks/next/index.ts @@ -87,7 +87,7 @@ import { parseStrict } from "../../functions/env"; const DEFAULT_BUILD_SCRIPT = ["next build"]; const PUBLIC_DIR = "public"; -export const supportedRange = "12 - 15.0"; +export const supportedRange = "12 - 16.0"; export const name = "Next.js"; export const support = SupportLevel.Preview;