webpack.config.babel.js
3.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
import webpack, {DefinePlugin} from 'webpack';
const UglifyJsPlugin = require('uglifyjs-webpack-plugin');
import path from 'path';
import MiniCssExtractPlugin from "mini-css-extract-plugin";
import CleanWebpackPlugin from 'clean-webpack-plugin';
import HtmlWebpackPlugin from "html-webpack-plugin";
import config from "./config";
const OptimizeCSSAssetsPlugin = require("optimize-css-assets-webpack-plugin");
let pathsToClean = [
'dist'
];
let cleanOptions = {
root: __dirname,
verbose: true,
dry: false
};
let baseArr = [
new DefinePlugin({//全局变量
PRODUCTION: false
}),
new MiniCssExtractPlugin({
// Options similar to the same options in webpackOptions.output
// both options are optional
filename: "css/[name].css",
chunkFilename: "css/[id].css"
}),//css分离
new CleanWebpackPlugin(pathsToClean, cleanOptions),//清除历史版本
new UglifyJsPlugin({test: /\.js($|\?)/i,parallel: false})
];
let htmls = function () {
const title = require('./app/' + config.currentApp + '/title');
let arr = [];
for (let i in title) {
arr.push(new HtmlWebpackPlugin({
filename: i + '.html',
template: './index.ejs',
title: title[i],
inject: true,
minify: {
removeComments: true,
collapseWhitespace: true,
removeAttributeQuotes: true
}
}))
}
arr = arr.concat(baseArr);
return arr
};
module.exports = {
optimization: {
minimizer: [
new UglifyJsPlugin({
cache: true,
parallel: true,
sourceMap: true // set to true if you want JS source maps
}),
new OptimizeCSSAssetsPlugin({})
]
},
//项目入口js文件
entry: [`./app/${config.currentApp}/index.js`],
//项目输出目录
output: {
chunkFilename: 'routes/[name].[chunkhash:8].chunk.js',
path: path.resolve(__dirname, 'dist'),
filename: '[name].[chunkhash:8].js',
},
//插件
plugins: htmls(),
//加载器
module: {
rules: [
{
test: /\.js/,
exclude: /node_modules/,
use: [
{
loader: 'babel-loader',
}
]
},
{
test: /\.(sa|sc|c)ss$/,
use: [
MiniCssExtractPlugin.loader ,
'css-loader',
'postcss-loader',
'sass-loader',
],
},
{
test: /\.(png|jpg|gif)$/,
use: "url-loader?limit=8192",
},
{test: /\.html$/, use: 'html-withimg-loader'},
{test: /\.json$/, use: 'json-loader'}
]
},
devServer: {
publicPath: config.routerPath[config.currentApp],
port: 8080,
disableHostCheck: true,
},
devtool: "source-map",
//模块路径
resolve: {
alias: {
'@': path.resolve(__dirname, 'src')
}
}
};