Skip to content

Commit f40e6d1

Browse files
committed
refactor: remove deprecated features
1 parent 4735a4b commit f40e6d1

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

next.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const nextConfig: NextConfig = {
1212
{ artifactDirectory: "./gql", gqlTagName: "graphql" },
1313
],
1414
],
15-
ppr: "incremental",
15+
cacheComponents: true,
1616
authInterrupts: true,
1717
},
1818
async rewrites() {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"private": true,
55
"type": "module",
66
"scripts": {
7-
"dev": "next dev --turbopack",
7+
"dev": "next dev --experimental-https",
88
"build": "next build",
99
"start": "next start",
1010
"lint": "eslint .",

tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@
3838
"**/*.ts",
3939
"**/*.tsx",
4040
".next/types/**/*.ts",
41-
"middleware.ts"
41+
"middleware.ts",
42+
".next/dev/types/**/*.ts"
4243
],
4344
"exclude": [
4445
"node_modules"

0 commit comments

Comments
 (0)