-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
41 lines (38 loc) · 985 Bytes
/
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
const webpack = require('webpack')
const BrowserSyncPlugin = require('browser-sync-webpack-plugin')
const isProduction = process.env.NODE_ENV === 'production'
const plugins = []
if (!isProduction) {
plugins.push(
new BrowserSyncPlugin({
host: 'localhost',
port: 3000,
server: { baseDir: ['dist'] },
files: ['./dist/*'],
})
)
}
module.exports = {
entry: './src/canvas.js',
output: {
path: __dirname + '/dist/js',
filename: 'bundle.js',
},
module: {
loaders: [
{
test: /\.js$/,
exclude: /(node_modules|bower_components)/,
use: {
loader: 'babel-loader',
options: {
presets: ['env'],
},
},
},
],
},
plugins,
watch: !isProduction,
devtool: isProduction ? false : 'source-map',
}