mirror of
https://github.com/zuiidea/antd-admin.git
synced 2024-04-21 12:32:14 +00:00
14 lines
221 B
JavaScript
14 lines
221 B
JavaScript
|
|
export default function (webpackConfig) {
|
|
webpackConfig.module.rules.push({
|
|
test: /\.svg$/i,
|
|
use: [
|
|
{
|
|
loader: require.resolve('svg-sprite-loader'),
|
|
},
|
|
],
|
|
})
|
|
|
|
return webpackConfig
|
|
};
|