1 Star 0 Fork 248

lopezycj/xuanxuan

forked from easysoft/xuanxuan 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
webpack.config.electron.js 1.44 KB
一键复制 编辑 原始数据 按行查看 历史
Catouse 提交于 2017-02-23 14:16 . * change debug build config.
/**
* Build config for electron 'Main Process' file
*/
import webpack from 'webpack';
import validate from 'webpack-validator';
import merge from 'webpack-merge';
import BabiliPlugin from 'babili-webpack-plugin';
import baseConfig from './webpack.config.base';
export default validate(merge(baseConfig, {
devtool: 'source-map',
entry: ['babel-polyfill', './app/main.development'],
// 'main.js' in root
output: {
path: __dirname,
filename: './app/main.js'
},
plugins: [
// new BabiliPlugin(),
// Add source map support for stack traces in node
// https://github.com/evanw/node-source-map-support
// new webpack.BannerPlugin(
// 'require("source-map-support").install();',
// { raw: true, entryOnly: false }
// ),
new webpack.DefinePlugin({
DEBUG: process.env.NODE_ENV === 'debug' ? JSON.stringify('production') : process.env.NODE_ENV === 'development',
'process.env': {
NODE_ENV: JSON.stringify(process.env.NODE_ENV)
}
})
],
/**
* Set target to Electron specific node.js env.
* https://github.com/chentsulin/webpack-target-electron-renderer#how-this-module-works
*/
target: 'electron-main',
/**
* Disables webpack processing of __dirname and __filename.
* If you run the bundle in node.js it falls back to these values of node.js.
* https://github.com/webpack/webpack/issues/2010
*/
node: {
__dirname: false,
__filename: false
},
}));
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
NodeJS
1
https://gitee.com/lopezycj/xuanxuan.git
git@gitee.com:lopezycj/xuanxuan.git
lopezycj
xuanxuan
xuanxuan
master

搜索帮助