`preload/splash.ts` -> `preload/index.ts`

This commit is contained in:
草鞋没号 2022-06-29 07:38:37 +08:00
parent bb1505d2c8
commit 0ab15c65f1
2 changed files with 8 additions and 3 deletions

View File

@ -83,5 +83,10 @@ function useLoading() {
// ----------------------------------------------------------------------
const { appendLoading, removeLoading } = useLoading()
window.removeLoading = removeLoading
domReady().then(appendLoading)
window.onmessage = ev => {
ev.data.payload === 'removeLoading' && removeLoading()
}
setTimeout(removeLoading, 4999)

View File

@ -30,7 +30,7 @@ export default defineConfig({
preload: {
input: {
// You can configure multiple preload scripts here
splash: join(__dirname, 'electron/preload/splash.ts'),
index: join(__dirname, 'electron/preload/index.ts'),
},
vite: {
build: {
@ -40,7 +40,7 @@ export default defineConfig({
}
},
},
// Enables use of Node.js API in the Renderer-process
// Enables use of Node.js API in the Electron-Renderer
renderer: {},
}),
],