Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
const { withSentryConfig } = require('@sentry/nextjs');

/** @type {import('next').NextConfig} */
const nextConfig = {
experimental: {
ppr: true,
},
};
const nextConfig = {};

module.exports = withSentryConfig(nextConfig, {
silent: true,
Expand Down
15 changes: 5 additions & 10 deletions dev-packages/e2e-tests/test-applications/nextjs-15/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,8 @@
"test:dev-turbo": "TEST_ENV=dev-turbopack playwright test",
"test:build": "pnpm install && pnpm build",
"test:build-canary": "pnpm install && pnpm add next@canary && pnpm add react@beta && pnpm add react-dom@beta && pnpm build",
"//": "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.",
"test:build-latest": "pnpm install && pnpm add [email protected] && pnpm add [email protected] && pnpm add [email protected] && pnpm build",
"test:build-turbo": "pnpm install && pnpm add [email protected] && next build --turbopack",
"test:build-latest": "pnpm install && pnpm add next@next-15 && pnpm build",
"test:build-turbo": "pnpm install && next build --turbopack",
"test:assert": "pnpm test:prod && pnpm test:dev"
},
"dependencies": {
Expand All @@ -22,9 +21,9 @@
"@types/react": "18.0.26",
"@types/react-dom": "18.0.9",
"ai": "^3.0.0",
"next": "15.4.2-canary.1",
"react": "beta",
"react-dom": "beta",
"next": "15.5.4",
"react": "latest",
"react-dom": "latest",
"typescript": "~5.0.0",
"zod": "^3.22.4"
},
Expand All @@ -37,10 +36,6 @@
},
"sentryTest": {
"optionalVariants": [
{
"build-command": "pnpm test:build-canary",
"label": "nextjs-15 (canary)"
},
{
"build-command": "pnpm test:build-latest",
"label": "nextjs-15 (latest)"
Expand Down

This file was deleted.

Loading