-
Notifications
You must be signed in to change notification settings - Fork 4
/
webpack.config.babel.js
60 lines (54 loc) · 1.35 KB
/
webpack.config.babel.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
54
55
56
57
58
59
60
import { BundleAnalyzerPlugin } from 'webpack-bundle-analyzer'
import ExtractTextPlugin from 'extract-text-webpack-plugin'
import HtmlWebpackPlugin from 'html-webpack-plugin'
import UglifyJSPlugin from 'uglifyjs-webpack-plugin'
import webpack from 'webpack'
const ENV = process.env.NODE_ENV
console.log('BUILDING WITH ENV:', ENV)
const config = {
entry: ['babel-polyfill', './app.js'],
output: {
path: __dirname,
filename: 'build.[hash].js',
publicPath: '/',
},
module: {
loaders: [
{
test: /\.js$/,
exclude: /(node_modules)/,
loader: 'babel-loader',
},
{
test: /\.scss$/,
use: ExtractTextPlugin.extract({
fallback: 'style-loader',
use: ['css-loader', 'sass-loader'],
}),
},
],
},
externals: {
google: 'google',
},
plugins: [
new ExtractTextPlugin('output.css'),
new webpack.IgnorePlugin(/\.\/locale$/),
new HtmlWebpackPlugin({
alwaysWriteToDisk: true,
filename: 'index.html',
template: 'template.html',
showErrors: ENV === 'development',
}),
],
}
if (ENV === 'production') {
config.plugins.push(
new UglifyJSPlugin({ uglifyOptions: { ecma: 5, ie8: true } })
)
}
if (ENV === 'development') {
// config.plugins.push(new BundleAnalyzerPlugin())
config.devtool = 'eval'
}
module.exports = config