-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.common.config.js
131 lines (126 loc) · 3.56 KB
/
webpack.common.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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
const path = require('path');
const webpack = require('webpack');
const CompressionPlugin = require('compression-webpack-plugin');
const cssnext = require('postcss-cssnext');
const nodeExternals = require('webpack-node-externals');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
process.noDeprecation = true
function ifProd(env, plugin) {
if (env === 'prod') return plugin
return undefined
}
function ifDev(env, plugin) {
if (env === 'dev') return plugin
return undefined
}
function noUndefined(array) {
return array.filter(function(item) {
return !!item
})
}
module.exports = function(env) {
return {
name: 'client',
devtool: env === 'prod' ? 'source-map' : 'eval',
entry: {
bundle: noUndefined([
'babel-polyfill',
'isomorphic-fetch',
ifDev(env, 'webpack-hot-middleware/client'),
'./src/client'
])
},
output: {
path: path.join(__dirname, 'dist'),
filename: '[name].js',
publicPath: '/static/'
},
plugins: noUndefined([
new CompressionPlugin(),
new ExtractTextPlugin('style.css'),
new webpack.DefinePlugin({
"process.env": {
'client': JSON.stringify(true),
'NODE_ENV': JSON.stringify(process.env.NODE_ENV),
'API_ID': JSON.stringify(process.env.API_ID),
'API_ENDPOINT': JSON.stringify(process.env.API_ENDPOINT),
'API_JS_ID': JSON.stringify(process.env.API_JS_ID),
}
}),
new webpack.LoaderOptionsPlugin({
test: /\.css$/,
options: {
postcss: cssnext,
// required to avoid issue css-loader?modules
// this is normally the default value, but when we use
// LoaderOptionsPlugin, we must specify it again, otherwise,
// context is missing (and css modules names can be broken)!
context: __dirname,
},
}),
ifDev(env, new webpack.HotModuleReplacementPlugin()),
ifProd(env, new webpack.NoEmitOnErrorsPlugin()),
ifProd(env, new webpack.LoaderOptionsPlugin({
minimize: true
})),
ifProd(env, new webpack.optimize.UglifyJsPlugin({
sourceMap: true,
compress: {
warnings: false
}
}))
]),
resolve: {
modules: [
path.join(__dirname, 'src'),
'node_modules'
],
extensions: ['.js']
},
module: {
rules: [
{
test: /\.js$/,
loader: 'babel-loader',
exclude: /node_modules/,
include: __dirname,
query: {
plugins: [
['import', { libraryName: 'antd', style: 'css' }]
],
}
},
{
test: /\.(scss|css$)$/,
include: [/node_modules\/.*antd/, /node_modules\/rc-drawer-menu/],
use: ExtractTextPlugin.extract({
fallback: 'style-loader',
use: ['css-loader'],
})
},
{
test: /\.(scss|css$)$/,
exclude: /node_modules/,
use: ExtractTextPlugin.extract({
fallback: 'style-loader',
use: ['css-loader?modules&importLoaders=1&localIdentName=[name]__[local]___[hash:base64:5]', 'sass-loader'],
})
},
{
test: /\.(png|jpg|svg|ico)$/,
loader: 'file-loader',
options: {
name: 'images/[name].[ext]'
}
},
{
test: /\.(ttf|woff|eot|ttf|otf|woff2)$/,
loader: 'file-loader',
options: {
name: 'fonts/[name].[ext]'
}
},
]
}
}
}