-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.config.js
61 lines (50 loc) · 1.36 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
var webpack = require('webpack');
module.exports = {
devtool: 'eval-source-map',//配置生成Source Maps,选择合适的选项
entry: __dirname + "/app/main.js", // 唯一入口文件
output: {
path: __dirname + "/public",// 打包后的文件存放的地方
filename: "bundle.js"// 打包后输出文件的文件名
},
module: {//在配置文件里添加JSON loader
loaders: [
{
test: /\.json$/,
loader: "json-loader"
},
{
test: /\.js$/,
exclude: /node_modules/,
loader: 'babel-loader', //在webpack的module部分的loaders里进行配置即可
query: {
presets: ['es2015', 'react']
}
},
{
test: /\.css$/,
use: [
'style-loader',
{
loader: 'css-loader',
options: { modules: true, sourceMap: true }
},
'postcss-loader'
],
}
]
},
devServer: {
contentBase: __dirname + "/public", //本地服务器所加载的页面所在的目录
compress: true, // 是否使用Gzip
port: 9000, // 指定端口 不指定端口默认为1080
historyApiFallback: true, //不跳转
inline: true //实时刷新
},
plugins: [
new webpack.BannerPlugin("嘿嘿,生效了"),//在这个数组中new一个就可以了
new webpack.optimize.UglifyJsPlugin(), // 代码混淆
new webpack.DefinePlugin({
'process.env.environment': JSON.stringify(process.env.NODE_ENV)
}),
],
}