mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
9bfbd5c6a8
* add vscode launch config for debugging inso * remove undeclared task
17 lines
467 B
JavaScript
17 lines
467 B
JavaScript
const webpack = require('webpack');
|
|
const { merge } = require('webpack-merge');
|
|
const base = require('./webpack.config.base');
|
|
|
|
/** @type { import('webpack').Configuration } */
|
|
module.exports = merge(base, {
|
|
mode: 'development',
|
|
devtool: 'inline-source-map',
|
|
plugins: [
|
|
new webpack.DefinePlugin({
|
|
__DEV__: true,
|
|
'process.env.DEFAULT_APP_NAME': JSON.stringify('insomnia-app'),
|
|
'process.env.VERSION': JSON.stringify('dev'),
|
|
}),
|
|
],
|
|
});
|