-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
45 lines (44 loc) · 1.37 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
const { VueLoaderPlugin } = require('vue-loader');
const path = require('path');
module.exports = {
// This is the "main" file which should include all other modules
entry: './src/ui/main.js',
// Where should the compiled file go?
output: {
path: path.resolve(__dirname, 'dist'),
publicPath: 'dist/bundle.js',
filename: 'bundle.js'
},
optimization: {
minimize: true
},
resolve: {
alias: {
vue: 'vue/dist/vue.js'
}
},
module: {
// Special compilation rules
rules: [
{
// Ask webpack to check: If this file ends with .js, then apply some transforms
test: /\.js$/,
// Transform it with babel
use: 'babel-loader',
// don't transform node_modules folder (which don't need to be compiled)
exclude: /node_modules/
},
{
// Ask webpack to check: If this file ends with .vue, then apply some transforms
test: /\.vue$/,
// don't transform node_modules folder (which don't need to be compiled)
exclude: /(node_modules|bower_components)/,
// Transform it with vue
use: 'vue-loader'
}
]
},
plugins: [
new VueLoaderPlugin()
]
};