-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathwebpack.config.js
72 lines (67 loc) · 2.04 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
/*
Notes
- Detailed webpack configration can be found in the documentation: https://webpack.js.org/configuration/
- `webpack -p` same as UglifyJS with process.env.NODE_ENV == 'production' (https://webpack.js.org/guides/production/)
*/
const webpack = require('webpack')
const path = require('path')
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin
const env = process.env.NODE_ENV || 'dev'
const api = process.env.API_HOST || 'localhost:8081'
const protocol = process.env.PROTOCOL || 'http://'
console.log('env:', env);
console.log('api:', api);
config = {
context: path.resolve(__dirname, 'src'),
entry: {
main: './main.jsx'
},
output: {
path: path.resolve(__dirname, 'assets'),
publicPath: '/assets/',
filename: 'js/[name].bundle.js'
},
module: {
loaders: [{
test: /\.jsx?$/,
exclude: /(node_modules)/,
loader: 'babel-loader',
query: {
presets: ['react', 'es2015', 'stage-0'],
plugins: ['react-html-attrs', 'transform-decorators-legacy', 'transform-class-properties', 'transform-runtime']
}
}]
},
plugins: [],
devServer: {
// host: '192.168.0.6',
port: 8080,
contentBase: __dirname,
inline: true,
compress: true,
hot: true,
historyApiFallback: true
},
resolve: {
alias: {
pages: path.resolve(__dirname, 'src/pages/'),
components: path.resolve(__dirname, 'src/components/'),
actions: path.resolve(__dirname, 'src/redux/actions/'),
store: path.resolve(__dirname, 'src/redux/store/'),
reducers: path.resolve(__dirname, 'src/redux/reducers/'),
modules: path.resolve(__dirname, 'src/modules/'),
samples: path.resolve(__dirname, 'src/samples/'),
utils: path.resolve(__dirname, 'src/utils/')
},
extensions: ['.js', '.jsx', '.json']
}
}
// Set Global variables
config.plugins.push(new webpack.DefinePlugin({
'process.env': {
NODE_ENV: JSON.stringify(env),
PROTOCOL: JSON.stringify(protocol),
API_HOST: JSON.stringify(api)
},
}))
module.exports = config