fixed initial npm file error

This commit is contained in:
Jun-te Kim 2026-01-06 22:11:14 +00:00
parent 367c1e8f69
commit b43bb0714a
2 changed files with 11 additions and 4 deletions

View file

@ -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;

View file

@ -3,5 +3,3 @@ const config = {
"@tailwindcss/postcss": {},
},
};
export default config;