Fix base href for electron env

This commit is contained in:
ziajka
2019-01-04 10:58:35 +01:00
parent f4fbfe1ed3
commit d7529e93fd
3 changed files with 7 additions and 5 deletions

View File

@ -76,6 +76,7 @@ function createWindow () {
width: 800,
height: 600,
webPreferences: {
nodeIntegration: false,
preload: path.join(__dirname, 'sentry.js')
}
});
@ -117,8 +118,8 @@ function createWindow () {
// Some APIs can only be used after this event occurs.
app.on('ready', createWindow);
app.on('ready', createServerProc);
app.on('will-quit', exitServerProc);
// app.on('ready', createServerProc);
// app.on('will-quit', exitServerProc);
// Quit when all windows are closed.
app.on('window-all-closed', function () {