Files
plunk/packages/dashboard/next.config.js
T
2024-07-23 13:49:48 +02:00

19 lines
337 B
JavaScript

/** @type {import('next').NextConfig} */
module.exports = {
reactStrictMode: true,
swcMinify: true,
webpack(config) {
config.module.rules.push({
test: /\.svg$/,
use: ["@svgr/webpack"],
});
config.module.rules.push({
test: [/src\/(components|layouts)\/index.ts/i],
sideEffects: false,
});
return config;
},
};