juntekim.com/stripe_to_invoice/next.config.ts
2026-01-06 22:11:14 +00:00

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;