wix-style-react
Version:
25 lines (24 loc) • 409 B
JavaScript
module.exports = {
test: /\.svg$/,
use: [
{
loader: '@svgr/webpack',
options: {
svgoConfig: {
plugins: {
removeViewBox: false,
},
},
},
},
{
loader: 'svg-url-loader',
options: {
iesafe: true,
noquotes: true,
limit: 10000,
name: 'media/[name].[hash:8].[ext]',
},
},
],
};