mirror of https://gitee.com/antv-l7/antv-l7
14 lines
304 B
JavaScript
14 lines
304 B
JavaScript
|
const path = require('path');
|
||
|
|
||
|
// Export a function. Accept the base config as the only param.
|
||
|
module.exports = {
|
||
|
webpackFinal: async (config, { configType }) => {
|
||
|
config.module.rules.push({
|
||
|
test: /\.stories\**.svg$/,
|
||
|
loader: 'svg-inline-loader'
|
||
|
}
|
||
|
);
|
||
|
return config;
|
||
|
},
|
||
|
};
|