diff --git a/apps/web/next.config.ts b/apps/web/next.config.ts index e9ffa30..e023221 100644 --- a/apps/web/next.config.ts +++ b/apps/web/next.config.ts @@ -2,6 +2,9 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { /* config options here */ + experimental: { + inlineCss: true, + }, }; export default nextConfig;