mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
16 lines
362 B
JavaScript
16 lines
362 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_DATA_DIR': JSON.stringify('Insomnia Designer'),
|
|
}),
|
|
],
|
|
});
|