Skip to content

Commit 2ed36cd

Browse files
chore: bump nextjs and add info bout appDir+i18n (#1097)
1 parent a44fde1 commit 2ed36cd

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

.changeset/smart-spoons-kiss.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"create-t3-app": patch
3+
---
4+
5+
chore: bump nextjs and add a note about appDir+i18n being incompat

cli/template/base/next.config.mjs

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
/** @type {import("next").NextConfig} */
99
const config = {
1010
reactStrictMode: true,
11-
swcMinify: true,
11+
/* If trying out the experimental appDir, comment the i18n config out
12+
* @see https://github.com/vercel/next.js/issues/41980 */
1213
i18n: {
1314
locales: ["en"],
1415
defaultLocale: "en",

cli/template/base/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"lint": "next lint"
1010
},
1111
"dependencies": {
12-
"next": "13.1.1",
12+
"next": "13.1.2",
1313
"react": "18.2.0",
1414
"react-dom": "18.2.0",
1515
"zod": "^3.20.2"
@@ -21,7 +21,7 @@
2121
"@typescript-eslint/eslint-plugin": "^5.47.1",
2222
"@typescript-eslint/parser": "^5.47.1",
2323
"eslint": "^8.30.0",
24-
"eslint-config-next": "13.1.1",
24+
"eslint-config-next": "13.1.2",
2525
"typescript": "^4.9.4"
2626
}
2727
}

0 commit comments

Comments
 (0)