From d8307e8fd4f209bf24106f84bb33192b472a32ae Mon Sep 17 00:00:00 2001 From: alex8088 <244096523@qq.com> Date: Sun, 30 Jul 2023 17:00:41 +0800 Subject: [PATCH] chore: update user config interface jsdoc --- src/config.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/config.ts b/src/config.ts index 0456789..d1e9e2e 100644 --- a/src/config.ts +++ b/src/config.ts @@ -26,19 +26,19 @@ export interface UserConfig { /** * Vite config options for electron main process * - * https://cn.vitejs.dev/config/ + * https://vitejs.dev/config/ */ main?: ViteConfig & { configFile?: string | false } /** * Vite config options for electron renderer process * - * https://cn.vitejs.dev/config/ + * https://vitejs.dev/config/ */ renderer?: ViteConfig & { configFile?: string | false } /** * Vite config options for electron preload files * - * https://cn.vitejs.dev/config/ + * https://vitejs.dev/config/ */ preload?: ViteConfig & { configFile?: string | false } } @@ -47,19 +47,19 @@ export interface UserConfigSchema { /** * Vite config options for electron main process * - * https://cn.vitejs.dev/config/ + * https://vitejs.dev/config/ */ main?: UserViteConfigExport /** * Vite config options for electron renderer process * - * https://cn.vitejs.dev/config/ + * https://vitejs.dev/config/ */ renderer?: UserViteConfigExport /** * Vite config options for electron preload files * - * https://cn.vitejs.dev/config/ + * https://vitejs.dev/config/ */ preload?: UserViteConfigExport }