File tree Expand file tree Collapse file tree 2 files changed +11
-5
lines changed Expand file tree Collapse file tree 2 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 3
3
*/
4
4
5
5
/** @type {import("next").NextConfig } */
6
- module . exports = {
6
+ const config = {
7
+ experimental : {
8
+ // ssr prepass seems broken since they enabled app dir by default. explicitly disable it
9
+ appDir : false ,
10
+ } ,
7
11
serverRuntimeConfig : {
8
12
// Will only be available on the server side
9
13
} ,
@@ -15,3 +19,5 @@ module.exports = {
15
19
/** We run eslint as a separate task in CI */
16
20
eslint : { ignoreDuringBuilds : ! ! process . env . CI } ,
17
21
} ;
22
+
23
+ module . exports = config ;
Original file line number Diff line number Diff line change 41
41
"singleQuote" : true
42
42
},
43
43
"dependencies" : {
44
- "@prisma/client" : " ^4.12.0 " ,
44
+ "@prisma/client" : " ^4.14.1 " ,
45
45
"@tanstack/react-query" : " ^4.18.0" ,
46
46
"@trpc/client" : " ^10.26.0" ,
47
47
"@trpc/next" : " ^10.26.0" ,
48
48
"@trpc/react-query" : " ^10.26.0" ,
49
49
"@trpc/server" : " ^10.25.1" ,
50
50
"clsx" : " ^1.1.1" ,
51
- "next" : " ^13.3.4 " ,
51
+ "next" : " ^13.4.2 " ,
52
52
"next-auth" : " ^4.22.1" ,
53
53
"react" : " ^18.2.0" ,
54
54
"react-dom" : " ^18.2.0" ,
68
68
"autoprefixer" : " ^10.4.7" ,
69
69
"cross-env" : " ^7.0.3" ,
70
70
"eslint" : " ^8.40.0" ,
71
- "eslint-config-next" : " ^13.3.4 " ,
71
+ "eslint-config-next" : " ^13.4.2 " ,
72
72
"eslint-config-prettier" : " ^8.8.0" ,
73
73
"eslint-plugin-prettier" : " ^4.2.1" ,
74
74
"eslint-plugin-react" : " ^7.32.2" ,
75
75
"eslint-plugin-react-hooks" : " ^4.6.0" ,
76
76
"npm-run-all" : " ^4.1.5" ,
77
77
"postcss" : " ^8.4.14" ,
78
78
"prettier" : " ^2.8.8" ,
79
- "prisma" : " ^4.12.0 " ,
79
+ "prisma" : " ^4.14.1 " ,
80
80
"start-server-and-test" : " ^1.12.0" ,
81
81
"tailwindcss" : " ^3.3.0" ,
82
82
"typescript" : " ^4.8.3"
You can’t perform that action at this time.
0 commit comments