-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.babel.js
56 lines (55 loc) · 1.25 KB
/
webpack.config.babel.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
import path from 'path'
import webpack from 'webpack'
export default {
entry: {
app: './src/main.js'
},
output: {
path: path.resolve(__dirname, './dist'),
publicPath: 'http://localhost:8090/dist/',
filename: '[name].js',
},
resolve: {
extensions: ['', '.vue', '.js']
},
externals: {
jquery: 'jQuery',
},
module: {
loaders: [
{test: /\.js$/, loader: 'babel', exclude: /node_modules/,},
{test: /\.vue$/, loader: 'vue', exclude: /node_modules/,}
]
},
babel: {
presets: ['es2015']
},
devServer: {
// contentBase: 'index/'
// hot: true,
inline : true,
host : 'localhost',
port : '8090'
},
Plugins: [
new webpack.ProvidePlugin({
//把jquery模块暴露成全局变量,这样就不需要require('jquery')了
$: 'jquery',
jQuery: 'jquery',
'window.jQuery': 'jquery',
}),
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: '"development"'
// NODE_ENV: '"production"'
}
}),
new webpack.optimize.UglifyJsPlugin({
compress: {
warnings: false
}
}),
// new webpack.HotModuleReplacementPlugin(),
// new webpack.optimize.MinChunkSizePlugin(minSize),//压缩插件,用法未研究
],
}