-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwebpack.client.js
More file actions
63 lines (49 loc) · 1.25 KB
/
webpack.client.js
File metadata and controls
63 lines (49 loc) · 1.25 KB
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
'use strict'; // eslint-disable-line strict
// Import modules
const webpack = require('webpack');
const path = require('path');
const config = require('./config');
module.exports = {
target: 'web',
cache: true,
context: __dirname,
devtool: 'none',
debug: false,
entry: [config.files.client.entry],
output: {
path: path.join(__dirname, config.files.staticAssets, config.files.client.out),
filename: config.files.client.outFile,
chunkFilename: '[name].[id].js',
publicPath: '/assets/js/',
},
externals: {
'source-map-support': null,
},
plugins: [
new webpack.DefinePlugin({
'process.env': { NODE_ENV: JSON.stringify('production') },
__CLIENT__: true,
__SERVER__: false,
}),
new webpack.optimize.DedupePlugin(),
new webpack.optimize.OccurenceOrderPlugin(),
new webpack.optimize.UglifyJsPlugin(),
],
babel: config.build.babel.client.prod,
module: {
loaders: [
{ test: /\.jsx?$/, loaders: ['babel'], include: [path.resolve(__dirname, 'app')] },
{ test: /\.json$/, loaders: ['json'] },
],
},
node: {
fs: 'empty',
buffer: 'empty',
util: 'empty',
events: 'empty',
assert: 'empty',
},
resolve: {
extensions: ['', '.jsx', '.js'],
},
};