diff --git a/apps/web/next.config.ts b/apps/web/next.config.ts index 291eeeb..958aebd 100644 --- a/apps/web/next.config.ts +++ b/apps/web/next.config.ts @@ -102,6 +102,15 @@ const config: NextConfig = { }, }, + // Webpack SVG loader (used when TURBOPACK=0 for production builds) + webpack(config) { + config.module.rules.push({ + test: /\.svg$/, + use: ["@svgr/webpack"], + }); + return config; + }, + images: { remotePatterns: [ {