aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/next.config.mjs
diff options
context:
space:
mode:
Diffstat (limited to 'apps/web/next.config.mjs')
-rw-r--r--apps/web/next.config.mjs7
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/web/next.config.mjs b/apps/web/next.config.mjs
index a8d60f07..fe0d8674 100644
--- a/apps/web/next.config.mjs
+++ b/apps/web/next.config.mjs
@@ -8,6 +8,13 @@ const withPWA = pwa({
/** @type {import('next').NextConfig} */
const nextConfig = withPWA({
output: "standalone",
+ webpack: (config) => {
+ config.module.rules.push({
+ test: /\.svg$/,
+ use: ["@svgr/webpack"],
+ });
+ return config;
+ },
async headers() {
return [
{