insomnia/packages/insomnia-app/webpack/webpack.config.electron.babel.js

42 lines
1.1 KiB
JavaScript
Raw Normal View History

const webpack = require('webpack');
const path = require('path');
const productionConfig = require('./webpack.config.production.babel');
2017-11-24 01:39:53 +00:00
const pkg = require('../package.json');
const PORT = pkg.dev['dev-server-port'];
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({
2018-10-17 16:42:33 +00:00
'process.env.APP_RENDER_URL': JSON.stringify(`http://localhost:${PORT}/renderer.html`),
'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,
2018-06-25 17:42:50 +00:00
entry: ['./main.development.js'],
output: output,
node: {
__dirname: false, // Use node.js __dirname
},
target: 'electron-main',
plugins: plugins,
};