9 lines
155 B
JavaScript
9 lines
155 B
JavaScript
|
module.exports = {
|
||
|
webpack(config) {
|
||
|
config.module.rules.push({
|
||
|
test: /\.svg$/,
|
||
|
use: ['@svgr/webpack'],
|
||
|
});
|
||
|
return config;
|
||
|
},
|
||
|
}
|