mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 06:39:48 +00:00
40 lines
919 B
JavaScript
40 lines
919 B
JavaScript
const webpack = require('webpack');
|
|
const path = require('path');
|
|
const productionConfig = require('./webpack.config.production.babel');
|
|
|
|
let devtool;
|
|
let plugins;
|
|
const output = {
|
|
libraryTarget: 'commonjs2',
|
|
filename: 'main.min.js'
|
|
};
|
|
|
|
if (process.env.NODE_ENV === 'development') {
|
|
output.path = path.join(__dirname, '../app');
|
|
devtool = 'eval-source-map';
|
|
plugins = [
|
|
new webpack.DefinePlugin({
|
|
'process.env.NODE_ENV': JSON.stringify('development'),
|
|
'process.env.INSOMNIA_ENV': JSON.stringify('development')
|
|
})
|
|
]
|
|
} else {
|
|
output.path = path.join(__dirname, '../build');
|
|
devtool = productionConfig.devtool;
|
|
plugins = productionConfig.plugins;
|
|
}
|
|
|
|
module.exports = {
|
|
...productionConfig,
|
|
devtool: devtool,
|
|
entry: [
|
|
'./main.development.js'
|
|
],
|
|
output: output,
|
|
node: {
|
|
__dirname: false // Use node.js __dirname
|
|
},
|
|
target: 'electron-main',
|
|
plugins: plugins
|
|
};
|