blob: 6722b642d2df48f5787a3d046a4263a3fa66fa9a [file] [log] [blame]
module.exports = {
reactStrictMode: true,
webpack(config) {
config.module.rules.push({
test: /\.svg$/,
use: [
{
loader: "@svgr/webpack",
options: {
svgo: false, // Optimization caused bugs with some of my SVGs
},
},
],
});
return config;
},
}