-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.common.config.js
95 lines (83 loc) · 2.4 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
const path = require("path");
const webpack = require("webpack");
const HtmlWebpackPlugin = require('html-webpack-plugin');
const HappyPack = require('happypack');
const os = require('os');
const happyThreadPool = HappyPack.ThreadPool({ size: os.cpus().length });// 手动创建进程池
function resolve(dir) {
return path.join(__dirname, dir)
}
const commonConfig = {
/*入口*/
entry: {
app: [path.join(__dirname, "src/index.js")],
},
/*输出到dist文件夹,输出文件名字为bundle.js*/
output: {
path: path.join(__dirname, "./dist"),
filename: "js/[name].[hash].js",
chunkFilename: 'js/[name].[chunkhash].js'
},
module: {
rules: [
{
test: /\.m?js$/,
exclude: /(node_modules)/,
loader: 'happypack/loader?id=happyBabel',
},
{
test: /\.(png|jpg|gif)$/,
use: [{
loader: 'url-loader',
options: {
limit: 8192
}
}]
},
{
test: /\.(png|jpg|gif|svg)$/,
use: [
{
loader: "file-loader",
options: {
name: "[name].[ext]",
outputPath: "images/"
}
},
{
loader: "image-webpack-loader",
options: {
disable: true, // [email protected] and newer
},
}
]
}
]
},
resolve: {
extensions: ['.js', '.jsx', '.json', '.ts', '.tsx'], // 默认不带后缀名字的时候,按这个顺序查找
modules: [ // 优化模块查找路径
resolve('src'),
resolve('node_modules') // 指定node_modules所在位置 当你import 第三方模块时 直接从这个路径下搜索寻找
],
alias: {
"~": path.join(__dirname, "src/")
}
},
plugins: [
new HappyPack({
// 这个HappyPack的“名字”就叫做happyBabel,和楼上的查询参数遥相呼应
id: 'happyBabel',
// 指定进程池
threadPool: happyThreadPool, //共享进程池中的子进程处理任务, 防止资源占用过多
loaders: ['babel-loader?cacheDirectory'],
threads : 4 ,// 开启子进程的个数
verbose: true , // 允许输出日志
}),
new HtmlWebpackPlugin({
filename: 'index.html',
template: path.join(__dirname, 'src/index.html'), // 如果未指定chunk 会把入口文件的所有 chunk 都动态插入到 html 文件
}),
],
};
module.exports= commonConfig