forked from RackHD/on-web-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.babel.js
103 lines (90 loc) · 2.27 KB
/
webpack.config.babel.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
// Copyright 2015, EMC, Inc.
const webpack = require('webpack');
const isProduction = process.env.NODE_ENV === 'production';
module.exports = {
context: `${__dirname}/src`,
entry: './bundle.js',
output: {
path: `${__dirname}/static`,
publicPath: '/',
filename: 'monorail.js'
},
resolve: {
extensions: ['', '.jsx', '.js'],
modulesDirectories: [
`${__dirname}/node_modules`,
'node_modules'
],
alias: {
'src-common': `${__dirname}/src/common`,
'src-config': `${__dirname}/src/config`,
'src-graph-canvas': `${__dirname}/src/graph_canvas`,
'src-management-console': `${__dirname}/src/management_console`,
'src-monorail': `${__dirname}/src/monorail`,
'src-network-topology': `${__dirname}/src/network_topology`,
'src-operations-center': `${__dirname}/src/operations_center`,
'src-sku-packs': `${__dirname}/src/sku_packs`,
'src-visual-analytics': `${__dirname}/src/visual_analytics`,
'src-workflow-editor': `${__dirname}/src/workflow_editor`
}
},
module: {
preLoaders: [
{
test: /\.jsx?$/,
exclude: /src\//,
loader: 'source-map'
}
],
loaders: [
{
test: /\.jsx?$/,
exclude: /node_modules/,
loader: 'babel'
},
{
test: /\.json$/,
loader: 'json'
},
{
test: /\.(xml|html|txt|md)$/,
loader: 'raw'
}
]
},
plugins: ([
new webpack.NoErrorsPlugin(),
new webpack.optimize.DedupePlugin(),
new webpack.DefinePlugin({
'process': JSON.stringify({
browser: true,
env: {
NODE_ENV: process.env.NODE_ENV
}
}),
'__DEV__': isProduction ? 'false' : 'true'
})
]).concat(isProduction ? [
new webpack.optimize.OccurenceOrderPlugin()
] : []),
stats: { colors: true },
node: {
global: true,
process: false,
Buffer: false,
__filename: false,
__dirname: false,
setImmediate: false
},
// devtool: isProduction ? 'source-map' : 'cheap-module-eval-source-map',
devServer: {
// https: true,
port: process.env.PORT || 3000,
host: '0.0.0.0',
colors: true,
publicPath: '/',
contentBase: './static',
historyApiFallback: true,
proxy: []
}
};