mirror of
https://github.com/johndoe6345789/low-code-react-app-b.git
synced 2026-04-24 13:44:54 +00:00
17 lines
483 B
TypeScript
17 lines
483 B
TypeScript
import type { PluginOption } from 'vite';
|
|
interface SparkPluginOptions {
|
|
serverURL?: string;
|
|
agentDisabled?: boolean;
|
|
projectRoot?: string;
|
|
outputDir?: string;
|
|
includeProxy?: boolean;
|
|
githubRuntimeName?: string;
|
|
githubApiUrl?: string;
|
|
port?: number;
|
|
corsOrigin?: RegExp;
|
|
hmrOverlay?: boolean;
|
|
logLevel?: 'info' | 'warn' | 'error' | 'silent';
|
|
}
|
|
export default function sparkVitePlugin(opts?: SparkPluginOptions): PluginOption[];
|
|
export {};
|