1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-20 13:59:40 +02:00
portainer/webpack/webpack.testing.js
2021-09-30 12:00:54 +03:00

6 lines
200 B
JavaScript

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