forked from alvarotrigo/vue-fullpage.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.dev.js
executable file
·53 lines (52 loc) · 1.05 KB
/
webpack.config.dev.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
const HtmlWebpackPlugin = require('html-webpack-plugin');
const path = require('path');
const CopyWebpackPlugin = require('copy-webpack-plugin');
module.exports = {
resolve: {
alias: {
'vue$': 'vue/dist/vue.js'
}
},
entry: {
build: path.join(__dirname, 'demos/demo1/src')
},
output: {
path: path.join(__dirname, 'demos/demo1/dist'),
filename: 'js/[name].js',
},
module: {
rules: [
{
test: /\.vue$/,
loader: 'vue-loader',
options: {
loaders: {
scss: 'vue-style-loader!css-loader!sass-loader',
js: 'babel-loader'
}
}
},
{
test: /\.js$/,
use: {
loader: 'babel-loader',
}
}
]
},
plugins: [
new HtmlWebpackPlugin({
inject: true,
hash: true,
template: './demos/template.html',
}),
// new CopyWebpackPlugin([
// {
// context: 'demos/demo3',
// from: 'src/imgs',
// to: 'imgs'
// },
// ]),
],
devtool: "source-map",
};