1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-19 13:29:41 +02:00

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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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' },
});