forked from tesis-lab/tesis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.config.js
More file actions
43 lines (41 loc) · 1.08 KB
/
Copy pathwebpack.config.js
File metadata and controls
43 lines (41 loc) · 1.08 KB
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
const HtmlWebpackPlugin = require('html-webpack-plugin'); //installed via npm
const webpack = require('webpack'); //to access built-in plugins
const path = require('path');
module.exports = {
entry: {
// This is the "main" file which should include all other modules
entry: './client/main.js',
},
output: {
path: path.resolve('./client/dist'),
publicPath: 'client/dist/',
filename:'build.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-loader',
// 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-loader'
}
]
},
plugins: [
new webpack.ProvidePlugin({
Vue: ['vue/dist/vue.common.js', 'default']
})
],
resolve: {
alias: {
'vue$': 'vue/dist/vue.common.js'
}
}
};