12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- const MiniCssExtractPlugin = require('mini-css-extract-plugin');
- const HtmlWebpackPlugin = require('html-webpack-plugin');
- const OptimizeCssAssetsPlugin = require('optimize-css-assets-webpack-plugin');
- module.exports = env => ({
- devtool: 'source-map',
- output: {
- filename: '[name].[contenthash].js',
- },
- optimization: {
- moduleIds: 'hashed',
- runtimeChunk: 'single',
- splitChunks: {
- cacheGroups: {
- vendor: {
- test: /[\\/]node_modules[\\/]/,
- name: 'vendors',
- chunks: 'all',
- },
- },
- },
- },
- module: {
- rules: [
- {
- test: /\.css$/,
- use: [MiniCssExtractPlugin.loader, 'css-loader', 'postcss-loader'],
- },
- {
- test: /\.scss$/,
- use: [
- MiniCssExtractPlugin.loader,
- 'css-loader',
- 'postcss-loader',
- 'sass-loader',
- ],
- },
- ],
- },
- plugins: [
- new HtmlWebpackPlugin({
- template: './index.html',
- minify: {
- collapseWhitespace: true,
- removeComments: true,
- removeRedundantAttributes: true,
- removeScriptTypeAttributes: true,
- removeStyleLinkTypeAttributes: true,
- useShortDoctype: true,
- },
- }),
- new MiniCssExtractPlugin({
- filename: '[name].[contenthash].css',
- chunkFilename: '[name].[id].[contenthash].css',
- }),
- new OptimizeCssAssetsPlugin({}),
- ],
- });
|