diff --git a/stripe_to_invoice/next.config.ts b/stripe_to_invoice/next.config.ts index de2d453..7941c94 100644 --- a/stripe_to_invoice/next.config.ts +++ b/stripe_to_invoice/next.config.ts @@ -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; \ No newline at end of file diff --git a/stripe_to_invoice/postcss.config.mjs b/stripe_to_invoice/postcss.config.mjs index 61e3684..0c1da69 100644 --- a/stripe_to_invoice/postcss.config.mjs +++ b/stripe_to_invoice/postcss.config.mjs @@ -2,6 +2,4 @@ const config = { plugins: { "@tailwindcss/postcss": {}, }, -}; - -export default config; +}; \ No newline at end of file