-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.base.js
52 lines (46 loc) · 1.01 KB
/
webpack.config.base.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
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const path = require('path');
module.exports = {
entry: [
'./src/sass/main.scss',
'./src/js/index.js'
],
output: {
path: `${__dirname}/dist/`,
filename: 'js/bundle.js'
},
resolve: {
root: `${__dirname}/src/js/`
},
module: {
loaders: [
{
test: /\.js$/,
loader: 'babel-loader',
include: [
path.join(__dirname, './src')
]
},
{
test: /\.scss$/,
loader: ExtractTextPlugin.extract('raw!sass', { publicPath: '../' })
}
]
},
plugins: [
new CopyWebpackPlugin([{
from: 'src/html/index.html',
to: 'index.html'
}]),
new CopyWebpackPlugin([{
from: 'src/images',
to: 'images/'
}]),
new CopyWebpackPlugin([{
from: 'node_modules/styleguide-baas/src/fonts',
to: 'fonts/'
}]),
new ExtractTextPlugin('css/main.css', {})
]
};