aboutsummaryrefslogtreecommitdiffhomepage
path: root/webpack/webpack.prod.js
diff options
context:
space:
mode:
Diffstat (limited to 'webpack/webpack.prod.js')
-rw-r--r--webpack/webpack.prod.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/webpack/webpack.prod.js b/webpack/webpack.prod.js
new file mode 100644
index 00000000..daa65f51
--- /dev/null
+++ b/webpack/webpack.prod.js
@@ -0,0 +1,6 @@
+const merge = require('webpack-merge');
+const common = require('./webpack.common.js');
+
+module.exports = merge(common, {
+ mode: 'production'
+}); \ No newline at end of file