chore(build): set node_env to testing (#5410)

This commit is contained in:
Chaim Lev-Ari
2021-09-30 12:00:54 +03:00
committed by GitHub
parent 0cb5656db6
commit 7fb2e44146
4 changed files with 12 additions and 5 deletions

View File

@@ -0,0 +1,6 @@
const webpackMerge = require('webpack-merge');
const productionConfig = require('./webpack.production');
module.exports = webpackMerge(productionConfig, {
optimization: { nodeEnv: 'testing' },
});