Skip to content

Commit d5074db

Browse files
authored
Merge branch 'main' into trek/zero-2530-remove-deprecation-warning-for-vercel-certs-renew
2 parents 6354b83 + bccb1e2 commit d5074db

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

.changeset/proud-sheep-worry.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
---
2+
---

packages/next/test/fixtures/00-app-dir-no-ppr/app/(newroot)/dashboard/another-edge/page.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export const runtime = 'experimental-edge'
1+
export const runtime = 'edge'
22

33
export default function AnotherPage(props) {
44
return (

packages/next/test/fixtures/00-app-dir-no-ppr/app/edge-route-handler/route.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export const runtime = 'experimental-edge';
1+
export const runtime = 'edge';
22

33
export const GET = req => {
44
// use query to trigger dynamic usage

packages/next/test/fixtures/00-app-dir-ppr/app/(newroot)/dashboard/another-edge/page.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export const runtime = 'experimental-edge'
1+
export const runtime = 'edge'
22

33
export default function AnotherPage(props) {
44
return (

packages/next/test/fixtures/00-app-dir-ppr/app/edge-route-handler/route.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export const runtime = 'experimental-edge';
1+
export const runtime = 'edge';
22

33
export const GET = req => {
44
// use query to trigger dynamic usage

0 commit comments

Comments
 (0)