Skip to content

Commit 8af7910

Browse files
author
Luca Forstner
committed
fix
1 parent 346fed8 commit 8af7910

File tree

2 files changed

+5
-10
lines changed

2 files changed

+5
-10
lines changed

dev-packages/e2e-tests/test-applications/nextjs-turbo/next.config.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
const { withSentryConfig } = require('@sentry/nextjs');
22

33
/** @type {import('next').NextConfig} */
4-
const nextConfig = {
5-
experimental: {
6-
ppr: true,
7-
},
8-
};
4+
const nextConfig = {};
95

106
module.exports = withSentryConfig(nextConfig, {
117
silent: true,

dev-packages/e2e-tests/test-applications/nextjs-turbo/package.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,8 @@
88
"test:prod": "TEST_ENV=production playwright test",
99
"test:dev": "TEST_ENV=development playwright test",
1010
"test:build": "pnpm install && npx playwright install && pnpm build",
11-
"test:build-canary": "pnpm install && pnpm add next@canary && pnpm add react@beta && pnpm add react-dom@beta && npx playwright install && pnpm build",
12-
"//": "15.0.0-canary.194 is the canary release attached to Next.js RC 1. We need to use the canary version instead of the RC because PPR will not work without. The specific react version is also attached to RC 1.",
13-
"test:build-latest": "pnpm install && pnpm add next@latest && pnpm add [email protected] && pnpm add [email protected] && npx playwright install && pnpm build",
11+
"test:build-canary": "pnpm install && pnpm add next@canary && pnpm add react@canary && pnpm add react-dom@canary && npx playwright install && pnpm build",
12+
"test:build-latest": "pnpm install && pnpm add next@latest && pnpm add react@rc && pnpm add react-dom@rc && npx playwright install && pnpm build",
1413
"test:assert": "pnpm test:dev"
1514
},
1615
"dependencies": {
@@ -19,8 +18,8 @@
1918
"@types/react": "18.0.26",
2019
"@types/react-dom": "18.0.9",
2120
"next": "15.0.0",
22-
"react": "19.0.0-rc-65a56d0e-20241020",
23-
"react-dom": "19.0.0-rc-65a56d0e-20241020",
21+
"react": "rc",
22+
"react-dom": "rc",
2423
"typescript": "4.9.5"
2524
},
2625
"devDependencies": {

0 commit comments

Comments
 (0)