123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- 'use strict'
- const webpack = require('webpack')
- const merge = require('webpack-merge')
- const baseConfig = require('./webpack.config.base')
- const MiniCssExtractPlugin = require('mini-css-extract-plugin')
- const UglifyJSPlugin = require('uglifyjs-webpack-plugin');
- module.exports = merge(baseConfig, {
- mode: 'production',
- optimization: {
- minimizer: [
- new UglifyJSPlugin({
- uglifyOptions: {
- // Eliminate comments
- comments: false,
- // remove warnings
- warnings: false,
- compress: {
- // Drop console statements
- drop_console: true,
- }
- }
- })
- ]
- // splitChunks: {
- // cacheGroups: {
- // commons: {
- // test: /[\\/]node_modules[\\/]/,
- // name: "vendor",
- // chunks: "all",
- // },
- // },
- // },
- },
- module: {
- rules: [
- {
- test: /\.css?$/,
- use: [
- MiniCssExtractPlugin.loader,
- 'css-loader'
- ]
- }, {
- test: /\.scss?$/,
- use: [
- MiniCssExtractPlugin.loader,
- 'css-loader',
- 'sass-loader'
- ]
- }, {
- test: /\.(png|jpg|gif)$/,
- use: [
- {
- loader: 'url-loader',
- options: {
- limit: 5000
- }
- }
- ]
- }
- ]
- },
- plugins: [
- // new MiniCssExtractPlugin({
- // filename: 'main.css'
- // })
- ]
- })
|