This repository has been archived by the owner on Apr 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 46
/
webpack.config.js
80 lines (75 loc) · 1.78 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
'use strict';
const webpack = require('webpack');
const HMRPlugin = webpack.HotModuleReplacementPlugin;
const DefinePlugin = webpack.DefinePlugin;
const ExtractTextPlugin = require('extract-text-webpack-plugin')
const HtmlWebpackPlugin = require('html-webpack-plugin')
const path = require('path');
const env = process.env.NODE_ENV || 'development';
const awsRegion = process.env.AWS_REGION || 'us-west-2';
const config = module.exports = {
context: path.join(__dirname, 'client'),
devtool: 'source-map',
entry: {
main: './index.js',
},
output: {
path: './build',
publicPath: '/',
filename: 'bundle.js',
},
plugins: [
new DefinePlugin({
'process.env': {
NODE_ENV: JSON.stringify(env),
AWS_REGION: JSON.stringify(awsRegion)
}
}),
new HtmlWebpackPlugin({
template: 'index.html',
inject: 'body'
})
],
module: {
loaders: [
{
test: /\.js$/,
exclude: /node_modules/,
loaders: [
'react-hot',
'babel'
]
},
{
test: /\.css$/,
include: /client/,
loader: env === 'production'
? ExtractTextPlugin.extract('style-loader', 'css-loader?module!postcss-loader', {
publicPath: '/'
})
: 'style!css?module&localIdentName=[path][name]---[local]---[hash:base64:5]!postcss'
},
{
test: /\.css$/,
exclude: /client/,
loader: 'style!css'
},
{
test: /\.svg$/,
loader: 'url'
},
]
},
devServer: {
contentBase: './client',
historyApiFallback: true,
proxy: {
'/api/*': {
target: 'http://localhost:3000/'
}
}
}
}
if (env == 'production') {
config.plugins.push(new ExtractTextPlugin('bundle.css'))
}