-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.common.config.js
118 lines (109 loc) · 3.19 KB
/
webpack.common.config.js
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
115
116
117
118
const path = require('path');
const webpack = require('webpack');
const HappyPack = require('happypack');
const os = require('os');
const happyThreadPool = HappyPack.ThreadPool({ size: os.cpus().length });
const HtmlWebpackPlugin = require('html-webpack-plugin');
const AddAssetHtmlPlugin = require('add-asset-html-webpack-plugin');
const CleanWebpackPlugin = require('clean-webpack-plugin');
const WORKSPACE = path.resolve(__dirname);
const isDev = process.env.NODE_ENV !== 'production';
if (isDev) {
console.log('此为开发环境');
} else {
console.log('此为生产环境');
}
const commonConfig = {
entry: {
entry: './src/index.js',
},
output: {
filename: '[name].[chunkhash].js',
path: path.join(WORKSPACE, 'dist/'),
},
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
use: ['happypack/loader?id=babel'],
},
{
test: /\.s[ac]ss$/,
use: ['style-loader', 'css-loader', 'sass-loader']
},
{
test: /\.css$/,
use: [
'style-loader',
'css-loader',
]
},
{
test: /\.(png|svg|jpg|gif)$/,
use: [
'file-loader'
]
},
{
test: /\.(woff|woff2|eot|ttf|otf)$/,
use: [
'file-loader',
]
},
{
test: /\.xml$/,
use: [
'xml-loader',
]
}
]
},
plugins: [
new CleanWebpackPlugin(['dist']),
new HtmlWebpackPlugin({
title: 'aneng Blog',
template: './src/index.template.html',
minify: {
removeComments: true, // 去注释
collapseWhitespace: true, // 压缩空格
removeAttributeQuotes: true // 去除属性引用
}
}),
new AddAssetHtmlPlugin(
[
{ filepath: path.join(WORKSPACE, '/dll/*.dll.js'), },
]),
new webpack.DllReferencePlugin({
context: __dirname,
manifest: path.join(WORKSPACE, 'dll/vendor-manifest.json')
}),
new HappyPack({
// 用id来标识 happypack处理那里类文件
id: 'babel',
// 如何处理 用法和loader 的配置一样
loaders: [{
loader: 'babel-loader',
options: {
presets: ['@babel/preset-react', '@babel/preset-env'],
plugins: ['@babel/transform-runtime']
},
}],
// 共享进程池
threadPool: happyThreadPool,
})
],
optimization: {
runtimeChunk: 'single',
splitChunks: {
cacheGroups: {
vendor: {
test: /[\\/]node_modules[\\/]/,
name: 'vendors',
chunks: 'all'
}
}
}
}
};
module.exports = commonConfig;