Skip to content

Commit

Permalink
Fix asset paths.
Browse files Browse the repository at this point in the history
  • Loading branch information
hperrin committed May 1, 2022
1 parent ed6f6d9 commit d936070
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@ const createWindow = (conf) => {

let win = new BrowserWindow({
webPreferences: {
preload: path.join(__dirname, 'assets/preload.js'),
preload: path.join(__dirname, 'assets', 'preload.js'),
},
icon: './assets/logo.png',
icon: path.join(__dirname, 'assets', 'logo.png'),
width,
height,
x,
Expand Down

0 comments on commit d936070

Please sign in to comment.