From 00c288bbe7d11875178be8e23cf0d06783e20177 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8D=89=E9=9E=8B=E6=B2=A1=E5=8F=B7?= <308487730@qq.com> Date: Mon, 29 Aug 2022 07:42:06 +0800 Subject: [PATCH] =?UTF-8?q?fix(=F0=9F=90=9E):=20vue-tsc=20error?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- electron/main/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electron/main/index.ts b/electron/main/index.ts index ddeb673..a368070 100644 --- a/electron/main/index.ts +++ b/electron/main/index.ts @@ -28,7 +28,7 @@ export const ROOT_PATH = { let win: BrowserWindow | null = null // Here, you can also use other preload const preload = join(__dirname, '../preload/index.js') -const url = process.env.VITE_DEV_SERVER_URL +const url = process.env.VITE_DEV_SERVER_URL as string const indexHtml = join(ROOT_PATH.dist, 'index.html') async function createWindow() {