-
Notifications
You must be signed in to change notification settings - Fork 18
/
webpack.config.js
75 lines (71 loc) · 1.79 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
var nib = require('nib')
var webpack = require('webpack')
var HtmlWebpackPlugin = require('html-webpack-plugin')
var env = process.env.NODE_ENV || 'development'
var config = {
path: __dirname + '/public',
entry: [
'./app/index.js'
],
plugins: [
new webpack.NoErrorsPlugin(),
new webpack.optimize.OccurenceOrderPlugin(),
new webpack.DefinePlugin({
"process.env": {
NODE_ENV: JSON.stringify(env)
}
}),
new webpack.optimize.UglifyJsPlugin({
compressor: {
warnings: false
}
}),
new HtmlWebpackPlugin({
template: './index.html',
hash: true,
inject: 'body'
})
],
devtool: 'source-map'
}
if (env == 'development') {
config.entry.unshift('webpack-hot-middleware/client')
config.plugins = [
new webpack.HotModuleReplacementPlugin(),
new webpack.NoErrorsPlugin(),
new webpack.DefinePlugin({"process.env": { NODE_ENV: JSON.stringify(env) }}),
new HtmlWebpackPlugin({
template: './index.html',
hash: true,
inject: 'body'
})
]
config.devtool = 'cheap-module-eval-source-map'
}
module.exports = {
entry: config.entry,
output: {
path: config.path,
filename: 'js/app.js',
cssFilename: 'css/application.css',
publicPath: '/',
},
module: {
loaders: [
{ test: /\.js$/, loader: 'babel', exclude: /node_modules/},
{ test: /\.styl$/, loader: 'style-loader!css-loader!stylus-loader' },
{ test: /\.css$/, loader: 'style-loader!css-loader'},
{ test: /\.(otf|eot|svg|ttf|woff)/, loader: 'url-loader' },
{ test: /\.(jpg|png|gif|json)/, loader: 'url-loader' },
]
},
stylus: {
'include css': true,
use: [nib()],
},
resolve: {
extensions: ['', '.js', '.json'],
},
plugins: config.plugins,
devtool: config.devtool
}