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