[READ-ONLY] Mirror of https://github.com/probablykasper/ferrum. Music library app for Mac, Linux and Windows ferrum.kasper.space
electron linux macos music music-library music-player napi windows
0

Configure Feed

Select the types of activity you want to include in your feed.

Fix app launch error

Kasper (Aug 31, 2022, 7:56 AM +0200) 14a4adc4 01a6a1dd

+2 -1
+1
CHANGELOG.md
··· 1 1 # Changelog 2 2 3 3 ## Next 4 + - Fix app launch error 4 5 - Fix app exit when launch fails 5 6 6 7 ## 0.14.0 - 2022 Aug 31
+1 -1
src/electron/main.ts
··· 79 79 }) 80 80 81 81 if (is.dev) mainWindow.loadURL(process.env.VITE_DEV_SERVER_URL || 'missing') 82 - else mainWindow.loadFile(path.resolve(__dirname, '../build/web/index.html')) 82 + else mainWindow.loadFile(path.resolve(__dirname, '../web/index.html')) 83 83 84 84 if (is.dev) mainWindow.webContents.openDevTools() 85 85