()
| 14 | preload: path.resolve(__dirname, 'preload.js'), |
| 15 | |
| 16 | get indexHtml(): string { |
| 17 | return isDevMode() |
| 18 | ? process.env.VITE_DEV_SERVER_URL || '' |
| 19 | : pathToFileURL(path.resolve(__dirname, 'index.html')).href; |
| 20 | }, |
| 21 | |
| 22 | get notificationSound(): string { |
| 23 | return pathToFileURL( |
nothing calls this directly
no test coverage detected