Skip to content

Commit e2f5206

Browse files
chore(deps): bumps some deps (#4382)
1 parent 1e978a1 commit e2f5206

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

next.config.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@
33
*/
44

55
/** @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+
},
711
serverRuntimeConfig: {
812
// Will only be available on the server side
913
},
@@ -15,3 +19,5 @@ module.exports = {
1519
/** We run eslint as a separate task in CI */
1620
eslint: { ignoreDuringBuilds: !!process.env.CI },
1721
};
22+
23+
module.exports = config;

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,14 @@
4141
"singleQuote": true
4242
},
4343
"dependencies": {
44-
"@prisma/client": "^4.12.0",
44+
"@prisma/client": "^4.14.1",
4545
"@tanstack/react-query": "^4.18.0",
4646
"@trpc/client": "^10.26.0",
4747
"@trpc/next": "^10.26.0",
4848
"@trpc/react-query": "^10.26.0",
4949
"@trpc/server": "^10.25.1",
5050
"clsx": "^1.1.1",
51-
"next": "^13.3.4",
51+
"next": "^13.4.2",
5252
"next-auth": "^4.22.1",
5353
"react": "^18.2.0",
5454
"react-dom": "^18.2.0",
@@ -68,15 +68,15 @@
6868
"autoprefixer": "^10.4.7",
6969
"cross-env": "^7.0.3",
7070
"eslint": "^8.40.0",
71-
"eslint-config-next": "^13.3.4",
71+
"eslint-config-next": "^13.4.2",
7272
"eslint-config-prettier": "^8.8.0",
7373
"eslint-plugin-prettier": "^4.2.1",
7474
"eslint-plugin-react": "^7.32.2",
7575
"eslint-plugin-react-hooks": "^4.6.0",
7676
"npm-run-all": "^4.1.5",
7777
"postcss": "^8.4.14",
7878
"prettier": "^2.8.8",
79-
"prisma": "^4.12.0",
79+
"prisma": "^4.14.1",
8080
"start-server-and-test": "^1.12.0",
8181
"tailwindcss": "^3.3.0",
8282
"typescript": "^4.8.3"

0 commit comments

Comments
 (0)