forked from zc3hd/proj_seven_review
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
299 lines (272 loc) · 7.15 KB
/
webpack.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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
// 要测试那个模块
var one = './src/modules/page_plans/';
// 配置项
var opts = {
// 目标文件夹
src: one,
// 目标文件夹
dist: "webapp",
img: 'img',
font: 'fonts',
};
var conf_local = require('./conf.js');
opts.port = conf_local.dev_port;
var one_arr = one.split('/');
var server_base = [];
server_base.push(one_arr[0]);
server_base.push(one_arr[1]);
// 找到dev下的根目录
var dev_base_str = server_base.join('/');
// 找到build下的根目录
var build_base_str = one.replace(one_arr[1], opts.dist);
// console.log(process.env.NODE_ENV);
// *********************************************依赖的包
const path = require('path');
const webpack = require('webpack');
const WebpackDevServer = require('webpack-dev-server');
// 指定入口HTML
const HtmlWebpackPlugin = require('html-webpack-plugin');
// 用于剥离css的
const ExtractTextPlugin = require('extract-text-webpack-plugin');
//webpack插件,用于清除目录文件
const CleanPlugin = require('clean-webpack-plugin');
// 压缩
const CompressionWebpackPlugin = require('compression-webpack-plugin');
const opn = require('opn');
// *********************************************依赖的包
var rules = [
// vue
{
test: /\.vue$/,
loader: 'vue-loader',
options: {
// vue-loader options go here
}
},
// js
{
test: /\.js$/,
loader: 'babel-loader',
exclude: /node_modules/
},
// ------------------------------------
// fonts
{
test: /\.(eot|svg|ttf|woff|woff2)$/,
loader: 'url-loader',
query: {
limit: 10000,
// 一样这个。
name: `${opts.font}/[name].[hash:7].[ext]`
}
},
// img
{
// test: /\.(png|jpg|gif|svg)$/,
test: /\.(png|jpe?g|gif|svg)(\?.*)?$/,
loader: 'url-loader',
query: {
limit: 10000,
// 一样这个。
name: `${opts.img}/[name].[hash:7].[ext]`
}
},
// hdr
{
// test: /\.(png|jpg|gif|svg)$/,
test: /\.hdr$/,
loader: 'url-loader',
query: {
// limit: 10000,
// 一样这个。
name: `${opts.img}/[name].[hash:7].[ext]`
}
}
];
var new_rules = null;
// dev模式
if (process.env.NODE_ENV == 'dev') {
var dev_css = [
//
{
test: /\.css$/,
loader: 'style-loader!css-loader'
},
//
{
test: /\.less$/,
loader: 'style-loader!css-loader!less-loader'
},
];
new_rules = rules.concat(dev_css);
// dev的配置项
const conf = {
devtool: 'eval-source-map',
//入口及webapp-dev-server
entry: [`webpack-dev-server/client?http://localhost:${opts.port}/`, `${opts.src}index.js`],
plugins: [
// 模版文件
new HtmlWebpackPlugin({
// 模板文件也要改
template: `${opts.src}index.html`,
}),
],
// 使用loader模块
module: {
rules: new_rules
},
// 只对命令行模式管用
// devServer: {
// // 本地服务器所加载的页面所在的目录后,需要手动打出8080/index.html路径
// contentBase: "./webapp",
// hot: true, // 配置HMR之后可以选择开启
// historyApiFallback: true, // 不跳转
// inline: true // 实时刷新
// },
};
const compiler = webpack(conf);
const server = new WebpackDevServer(compiler, {
open: true,
// 提供服务的路径--./路径
contentBase: dev_base_str,
noInfo: false,
// 热加载模式开启,就是页面html的显示部分改了,不会刷新,注释之后--改代码就会刷。
// hot: true,
// 路由的历史模式不转跳
historyApiFallback: false,
// 启动压缩
compress: true,
// 设置本地服务器
setup: function(app) {
// 这个APP就是express生成的app
// require('./api_server/app.js')(app);
},
// 配置代理服务器
proxy: {
'/api': {
target: `http://localhost:${conf_local.api_port}`,
pathRewrite: {
'^/api': '/api'
}
}
},
// 编译的状态
stats: { colors: true }
});
server.listen(opts.port, function() {
console.log('dev 测试服务 ' + opts.port);
opn('http://localhost:' + opts.port, { app: 'chrome' });
});
}
// build模式
else {
var build_css = [
// css
{
test: /\.css$/,
use: ExtractTextPlugin.extract({
fallback: 'style-loader',
use: [
//
"css-loader",
//
{
loader: 'postcss-loader',
options: {
ident: 'postcss',
plugins: [
require('autoprefixer')({
browsers: ['last 10 versions', 'Firefox >= 20', 'Android >= 4.0', 'iOS >= 8']
}),
]
}
},
]
})
},
// less
{
test: /\.less$/,
use: ExtractTextPlugin.extract({
fallback: 'style-loader',
use: [
//
"css-loader",
//
{
loader: 'postcss-loader',
options: {
ident: 'postcss',
plugins: [
require('autoprefixer')({
browsers: ['last 10 versions', 'Firefox >= 20', 'Android >= 4.0', 'iOS >= 8']
}),
]
}
},
//
'less-loader',
]
})
},
];
new_rules = rules.concat(build_css);
const build = {
entry: {
index: `${opts.src}index.js`,
},
output: {
// 1.指定输出的根目录
path: path.resolve(__dirname, build_base_str),
// 2.入口文件的输出名字
filename: '[name].[hash:7].js',
// 3.给页面所有加载文件提供一个专用地址或线上地址
// publicPath: '/dist/',
// 4.给require.ensure用:异步加载文件的真正的生成路径
chunkFilename: 'async.[name].[hash:7].js',
},
plugins: [
// -------------------------------------css--生成的地方
new ExtractTextPlugin('[name].[hash:7].css'),
// -------------------------------------压缩JS文件
new webpack.optimize.UglifyJsPlugin({
compress: {
warnings: false
}
}),
new webpack.LoaderOptionsPlugin({
minimize: true
}),
// ------------------------------------模板入口--各是各自的脚本
new HtmlWebpackPlugin({
// 模版文件
template: `${one}index.html`,
// 以上面的出口的配置为基础。
filename: 'index.html',
// 里面所有的引入都是按照 index.html这层所在地址 进行相对路径写的。
}),
// -------------------------------------清除
// 清除 文件和文件夹
new CleanPlugin(['*.js', '*.css', '*.css.map', "*.html", opts.img, opts.font], {
root: path.resolve(__dirname, build_base_str),
verbose: true,
dry: false,
// exclude: ['common', 'lib', 'API.js']
}),
],
// 使用loader模块
module: {
rules: new_rules
},
};
webpack(build, function(err, stats) {
if (err) throw err
process.stdout.write(stats.toString({
colors: true,
modules: false,
children: false,
chunks: false,
chunkModules: false
}) + '\n');
});
}