forked from GeSnowBoy/vue-gecode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
68 lines (68 loc) · 1.52 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
var HtmlWebpackPlugin = require('html-webpack-plugin')
let path = require('path')
const VueLoaderPlugin = require('vue-loader/lib/plugin')
function resolve(strPath) {
return path.resolve(__dirname, strPath)
}
module.exports = {
entry: './demo/index.js',
devServer: {
inline: true, //DevServer 会在构建完变化后的代码时通过代理客户端控制网页刷新。
port: 3243,
host: '0.0.0.0',
open: 'http://localhost:' + 3243 + '/'
},
output: {
path: resolve('./dist'),
filename: 'vue-gecode.min.js'
},
resolve: {
modules: [
resolve('src'),
resolve('static'),
resolve('node_modules')
],
extensions: ['.js', '.jsx', '.ts', '.vue'],
alias: {
'vue': 'vue/dist/vue.js'
}
},
devtool: 'source-map',
module: {
rules: [
{
test: /\.vue$/,
loader: 'vue-loader'
},{
test: /\.js$/,
exclude: /node_modules/,
include: resolve('src'),
use: [{
loader: 'babel-loader',
options: {
cacheDirectory: true,
'presets': [
// 把es6转成es5
['env', {
'modules': false
}],
'stage-0'
],
}
}]
}]
},
plugins: [
new VueLoaderPlugin(),
new HtmlWebpackPlugin({
template: resolve('./index.html'),
inject: true,
minify: {
removeComments: true,
collapseWhitespace: true,
removeAttributeQuotes: true
},
chunksSortMode: 'dependency'
})
]
}