-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathwebpack.config.js
41 lines (40 loc) · 1.18 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
var BrowserSyncPlugin = require('browser-sync-webpack-plugin');
var HtmlWebpackPlugin = require('html-webpack-plugin');
var ExtractTextPlugin = require('extract-text-webpack-plugin');
var path = require('path');
module.exports = {
entry: [
'./app/app.js',
'./app/plugin.js'
],
output: {
path: path.join(__dirname, 'dist'),
filename: 'bundle.js'
},
plugins: [
new HtmlWebpackPlugin({
filename: 'index.html',
template: 'app/index.html'
}),
new BrowserSyncPlugin({
host: 'localhost',
port: 3000,
server: {baseDir: ['dist']}
}),
new ExtractTextPlugin("style.css", {allChunks: false})
],
module: {
loaders: [
{
test: /\.js$/,
include: path.join(__dirname, 'app'),
loader: 'babel-loader',
query: {presets: ['es2015', 'react', 'stage-2']}
}, {
test: /\.scss$/,
include: path.join(__dirname, 'app'),
loader: ExtractTextPlugin.extract('style-loader', 'css-loader?minimize!sass')
}
]
}
};