diff options
Diffstat (limited to 'client/webpack.config.js')
-rw-r--r-- | client/webpack.config.js | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/client/webpack.config.js b/client/webpack.config.js new file mode 100644 index 000000000..8f54d88e5 --- /dev/null +++ b/client/webpack.config.js | |||
@@ -0,0 +1,16 @@ | |||
1 | switch (process.env.NODE_ENV) { | ||
2 | case 'prod': | ||
3 | case 'production': | ||
4 | module.exports = require('./config/webpack.prod') | ||
5 | break | ||
6 | |||
7 | case 'test': | ||
8 | case 'testing': | ||
9 | module.exports = require('./config/webpack.test') | ||
10 | break | ||
11 | |||
12 | case 'dev': | ||
13 | case 'development': | ||
14 | default: | ||
15 | module.exports = require('./config/webpack.dev') | ||
16 | } | ||