Files
Picsur/frontend/custom-webpack.config.js

10 lines
243 B
JavaScript
Raw Normal View History

import webpack from 'webpack';
2022-12-27 16:56:59 +01:00
// import { BundleAnalyzerPlugin } from 'webpack-bundle-analyzer';
export default {
2022-12-27 16:56:59 +01:00
plugins: [
new webpack.ContextReplacementPlugin(/moment[\/\\]locale$/, /en/),
// new BundleAnalyzerPlugin(),
],
};