-
Notifications
You must be signed in to change notification settings - Fork 3
/
webpack.config.js
49 lines (48 loc) · 1.12 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
/**
* Created by charleen on 12/27/16.
* Updated by Duncan on 12/28/16.
* Updated by Rose on 12/29/16.
*/
module.exports = {
entry: {
// This is the "main" file which should include all other modules
entry: './client/main.js',
},
output: {
// To the `dist` folder
// path: './dist',
// publicPath: 'dist/',
path: './client/dist',
publicPath: 'client/dist/',
filename:'build.js',
},
resolve: {
// NPM by default installs Runtime Only version, which will not compile html templates
alias: {
// this is the solution.
'vue$': 'vue/dist/vue.common.js'
}
},
module: {
loaders: [
{
// Ask webpack to check: If this file ends with .js, then apply some transforms
test: /\.js$/,
// Transform it with babel
loader: 'babel',
// don't transform node_modules folder (which don't need to be compiled)
exclude: /node_modules/
},
{
// Looks for .vue files to complie into js, html, css
test: /\.vue$/,
loader: 'vue'
}
]
},
vue: {
loaders: {
js: 'babel'
}
}
};