fixed initial npm file error
This commit is contained in:
parent
367c1e8f69
commit
b43bb0714a
2 changed files with 11 additions and 4 deletions
|
|
@ -1,7 +1,16 @@
|
|||
import type { NextConfig } from "next";
|
||||
|
||||
const nextConfig: NextConfig = {
|
||||
output: "standalone",
|
||||
output: 'standalone',
|
||||
experimental: {
|
||||
turbo: {
|
||||
rules: {
|
||||
'*.css': {
|
||||
loaders: ['postcss-loader'],
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
export default nextConfig;
|
||||
|
|
@ -3,5 +3,3 @@ const config = {
|
|||
"@tailwindcss/postcss": {},
|
||||
},
|
||||
};
|
||||
|
||||
export default config;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue