From f4ce93965bc260adee5ee96755a21db29e546b14 Mon Sep 17 00:00:00 2001 From: Austin Date: Sat, 14 Mar 2026 11:32:25 -0500 Subject: [PATCH] updated hours --- next.config.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/next.config.ts b/next.config.ts index d63581e..6722a05 100644 --- a/next.config.ts +++ b/next.config.ts @@ -10,13 +10,13 @@ const nextConfig: NextConfig = { }, ], }, - webpack(config) { - config.module.rules.push({ - test: /\.svg$/, - use: ["@svgr/webpack"] - }); - - return config; + turbopack: { + rules: { + '*.svg': { + loaders: ['@svgr/webpack'], + as: '*.js', + }, + }, } };