diff --git a/webpack/webpack.common.js b/webpack/webpack.common.js index 3424b2024..98e2f78d3 100644 --- a/webpack/webpack.common.js +++ b/webpack/webpack.common.js @@ -7,7 +7,7 @@ const MiniCssExtractPlugin = require('mini-css-extract-plugin'); const CleanWebpackPlugin = require('clean-webpack-plugin'); // const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer'); const npmPackage = require('../package.json'); -const projectRoot = path.resolve( __dirname, '..'); +const projectRoot = path.resolve(__dirname, '..'); module.exports = { entry: { @@ -92,11 +92,9 @@ module.exports = { new ProvidePlugin({ $: 'jquery', jQuery: 'jquery', - 'window.jQuery': 'jquery' + 'window.jQuery': 'jquery', }), new MiniCssExtractPlugin({ - // Options similar to the same options in webpackOptions.output - // both options are optional filename: '[name].css', chunkFilename: '[id].css', sourceMap: true