16 lines
No EOL
264 B
TypeScript
16 lines
No EOL
264 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: 'standalone',
|
|
experimental: {
|
|
turbo: {
|
|
rules: {
|
|
'*.css': {
|
|
loaders: ['postcss-loader'],
|
|
},
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|
|
export default nextConfig; |