This commit is contained in:
Your Name
2026-08-11 17:41:36 +08:00
parent cfe4c82c90
commit 03fe4ddf9d
18771 changed files with 3617239 additions and 0 deletions
@@ -0,0 +1,26 @@
import type { LogLevel } from 'vite';
export interface CliOptions {
'--'?: string[];
c?: boolean | string;
config?: string;
platform?: string;
p?: string;
ssr?: boolean;
base?: string;
debug?: boolean | string;
d?: boolean | string;
filter?: string;
f?: string;
logLevel?: LogLevel;
l?: LogLevel;
m?: string;
mode?: string;
clearScreen?: boolean;
autoHost?: string;
autoPort?: number;
devtools?: boolean;
devtoolsHost?: string;
devtoolsPort?: number;
subpackage?: string;
plugin?: string;
}