mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 06:39:48 +00:00
16 lines
349 B
JavaScript
16 lines
349 B
JavaScript
const webpack = require('webpack');
|
|
const {merge} = require('webpack-merge');
|
|
const base = require('./webpack.config.base');
|
|
|
|
module.exports = merge(base, {
|
|
mode: 'production',
|
|
optimization: {
|
|
minimize: true,
|
|
},
|
|
plugins: [
|
|
new webpack.DefinePlugin({
|
|
'process.env.DEFAULT_APP_NAME': JSON.stringify('Insomnia'),
|
|
}),
|
|
],
|
|
});
|