-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack.config.js
38 lines (38 loc) · 1006 Bytes
/
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
module.exports = {
resolve: {
alias: {
'vue$': 'vue/dist/vue.js'
}
},
// This is the "main" file which should include all other modules
entry: {
'index': './assets/js/index.js',
'run': './assets/js/run.js',
'example': './assets/js/example.js'
},
// Where should the compiled file go?
output: {
// To the `dist` folder
path: __dirname + '/target/classes/static/js/',
// With the filename `build.js` so it's dist/build.js
filename: '[name].js'
},
module: {
// Special compilation rules
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/
},
{
test: /\.vue$/,
loader: 'vue-loader'
},
{ test: /\.css$/, loader: "style-loader!css-loader" }
]
}
};