blob: 6722b642d2df48f5787a3d046a4263a3fa66fa9a [file] [log] [blame]
Samuel Shuert016ea022021-09-01 16:17:24 -05001module.exports = {
2 reactStrictMode: true,
pineafan78727452021-11-04 21:25:07 +00003 webpack(config) {
4 config.module.rules.push({
5 test: /\.svg$/,
6 use: [
7 {
8 loader: "@svgr/webpack",
9 options: {
10 svgo: false, // Optimization caused bugs with some of my SVGs
11 },
12 },
13 ],
14 });
15 return config;
16 },
17}