This commit is contained in:
Philip Peterson 2025-04-24 20:00:07 -07:00
parent b99f517631
commit 92958d9de6
No known key found for this signature in database
GPG key ID: 354311183FC6519B
2 changed files with 2 additions and 3 deletions

View file

@ -141,7 +141,7 @@ app.on('ready', () =>
const hwin = newWindow({width, height, x: startX, y: startY}, cfg, fn, profileName);
windowSet.add(hwin);
void hwin.loadURL(url)
void hwin.loadURL(url);
hwin.once('ready-to-show', () => {
hwin.show();

View file

@ -99,8 +99,7 @@ const config: webpack.Configuration[] = [
}
]
},
externals: {
},
externals: {},
plugins: [
new webpack.IgnorePlugin({resourceRegExp: /.*\.js.map$/i}),