From a5dd1f6bd923a2a8f384fee82b7dc7dc0073736c Mon Sep 17 00:00:00 2001 From: Luke Vella Date: Tue, 15 Jul 2025 16:04:30 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Fix=20next=20svg=20loader=20conf?= =?UTF-8?q?ig?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/landing/next.config.js | 2 +- apps/web/next.config.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/landing/next.config.js b/apps/landing/next.config.js index 7ebb11a22..e43347fa3 100644 --- a/apps/landing/next.config.js +++ b/apps/landing/next.config.js @@ -31,7 +31,7 @@ const nextConfig = { rules: { "*.svg": { loaders: ["@svgr/webpack"], - as: ".js", + as: "*.js", }, }, }, diff --git a/apps/web/next.config.js b/apps/web/next.config.js index ac7f5ae95..513544253 100644 --- a/apps/web/next.config.js +++ b/apps/web/next.config.js @@ -32,7 +32,7 @@ const nextConfig = { rules: { "*.svg": { loaders: ["@svgr/webpack"], - as: ".js", + as: "*.js", }, }, },