-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
116 lines (111 loc) · 2.93 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/* eslint-disable strict */
'use strict';
const path = require('path');
const webpack = require('webpack');
const rucksack = require('rucksack-css');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const HtmlWebpackTemplate = require('html-webpack-template');
const FaviconsWebpackPlugin = require('favicons-webpack-plugin');
let appEntry;
let devtool;
let plugins;
if (process.env.NODE_ENV === 'staging') {
appEntry = [path.join(__dirname, 'client/index.js')];
devtool = 'cheap-module-source-map';
plugins = [
new webpack.optimize.DedupePlugin(),
new webpack.optimize.OccurrenceOrderPlugin(),
new webpack.optimize.CommonsChunkPlugin('vendor', 'vendor.js'),
new webpack.DefinePlugin({
'process.env': { NODE_ENV: JSON.stringify('production') },
}),
new webpack.optimize.UglifyJsPlugin({
compress: {
warnings: false,
screw_ie8: true,
},
}),
new HtmlWebpackPlugin({
inject: false,
template: HtmlWebpackTemplate,
title: 'Patchy',
appMountId: 'root',
mobile: true,
}),
new FaviconsWebpackPlugin('./client/assets/favicon.png'),
];
} else {
appEntry = [
'webpack-dev-server/client?http://localhost:3000',
'webpack/hot/only-dev-server',
path.join(__dirname, 'client/index.js'),
];
devtool = 'cheap-module-eval-source-map';
plugins = [
new webpack.optimize.CommonsChunkPlugin('vendor', 'vendor.js'),
new webpack.HotModuleReplacementPlugin(),
new webpack.NoErrorsPlugin(),
new webpack.DefinePlugin({
'process.env': { NODE_ENV: JSON.stringify('development') },
}),
new HtmlWebpackPlugin({
inject: false,
template: HtmlWebpackTemplate,
title: 'Patchy',
appMountId: 'root',
mobile: true,
}),
// new FaviconsWebpackPlugin('./client/assets/favicon.png'),
];
}
module.exports = {
entry: {
app: appEntry,
vendor: [
'react',
'react-dom',
'react-redux',
'react-router',
'react-router-redux',
'redux',
'react-addons-css-transition-group',
'react-markdown',
'socket.io-client',
'react-css-modules',
],
},
output: {
path: path.join(__dirname, 'build'),
publicPath: '/',
filename: '[name]-[hash].js',
},
devtool,
module: {
loaders: [{
test: /\.jsx?$/,
loader: 'babel-loader',
exclude: /node_modules/,
}, {
test: /\.css$/,
loaders: [
'style?sourceMap',
'css?modules&importLoaders=1&localIdentName=[path]___[name]__[local]___[hash:base64:5]!postcss',
],
exclude: /node_modules/,
}, {
test: /\.(png|jpg|jpeg|gif|svg|woff|woff2)$/,
loader: 'url-loader?limit=10000&name=assets/[hash].[ext]',
}, {
test: /\.json$/,
loader: 'json',
}, {
test: /\.md$/,
loader: 'raw',
}, {
test: /\.wav$/,
loader: 'arraybuffer',
}],
},
postcss: [rucksack({ autoprefixer: true })],
plugins,
};