15 lines
411 B
TypeScript
15 lines
411 B
TypeScript
import type { FileReplacement } from '../../plugins/rollup-replace-files.plugin';
|
|
export interface ViteDevServerExecutorOptions {
|
|
buildTarget: string;
|
|
proxyConfig?: string;
|
|
port?: number;
|
|
host?: string | boolean;
|
|
https?: boolean;
|
|
hmr?: boolean;
|
|
open?: string | boolean;
|
|
cors?: boolean;
|
|
logLevel?: info | warn | error | silent;
|
|
mode?: 'production' | 'development';
|
|
clearScreen?: boolean;
|
|
}
|