mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 02:59:58 +08:00
14 lines
385 B
JavaScript
14 lines
385 B
JavaScript
const getWebpackConfig = require('antd-tools/lib/getWebpackConfig');
|
|
|
|
module.exports = function (webpackConfig) {
|
|
webpackConfig = getWebpackConfig(webpackConfig);
|
|
if (process.env.RUN_ENV === 'PRODUCTION') {
|
|
// Fix ie8 compatibility
|
|
webpackConfig[0].module.loaders.unshift({
|
|
test: /\.(tsx|jsx?)$/,
|
|
loader: 'es3ify-loader',
|
|
});
|
|
}
|
|
return webpackConfig;
|
|
};
|