fix: remove unnecessary config

This commit is contained in:
Christel Westerberg
2024-01-16 14:22:54 +01:00
parent 75ec048577
commit bef90cfc3c
2 changed files with 6 additions and 29 deletions

View File

@@ -1,13 +1,4 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
webpack(config) {
config.module.rules.push({
test: /\.svg$/,
use: ["@svgr/webpack"],
});
return config;
},
};
const nextConfig = {};
module.exports = nextConfig;