Skip to content

Commit 6ba390c

Browse files
committed
add deps and disable swcMinify
1 parent 874f55c commit 6ba390c

File tree

3 files changed

+101
-1
lines changed

3 files changed

+101
-1
lines changed

next.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const config = {
1818
env: {
1919
ENV: process.env.NODE_ENV,
2020
},
21-
swcMinify: true,
21+
swcMinify: false,
2222
webpack: (config, options) => {
2323
const { isServer } = options;
2424
if (!isServer) {

package-lock.json

Lines changed: 97 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
"type": "module",
1111
"postcss": {
1212
"plugins": {
13+
"postcss-import": {},
14+
"tailwindcss/nesting": "postcss-nesting",
1315
"tailwindcss": {},
1416
"autoprefixer": {}
1517
}
@@ -63,6 +65,7 @@
6365
"esbuild-loader": "^2.20.0",
6466
"postcss": "^8.4.27",
6567
"postcss-cli": "^8.3.0",
68+
"postcss-nesting": "^12.1.1",
6669
"reanalyze": "^2.16.0",
6770
"simple-functional-loader": "^1.2.1",
6871
"tailwindcss": "^3.3.3"

0 commit comments

Comments
 (0)