mirror of https://gitee.com/antv-l7/antv-l7
8 lines
234 B
JavaScript
8 lines
234 B
JavaScript
|
const setWebpackConfig = require('./.storybook/webpack.config');
|
||
|
|
||
|
exports.onCreateWebpackConfig = ({ getConfig, stage, plugins }) => {
|
||
|
const config = getConfig();
|
||
|
config.resolve.extensions.push('.glsl');
|
||
|
console.log(config);
|
||
|
};
|