chore: update user config interface jsdoc

This commit is contained in:
alex8088 2023-07-30 17:00:41 +08:00
parent 532ba52714
commit d8307e8fd4

View file

@ -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
}