@voya-kit/vite-config
Version:
Voya vite config
11 lines (10 loc) • 359 B
TypeScript
import { type PluginOption } from 'vite';
interface Options {
isBuild: boolean;
root: string;
compress: string;
enableMock?: boolean;
enableAnalyze?: boolean;
}
declare function createPlugins({ isBuild, root, compress, enableAnalyze }: Options, lastBuildTime: string): Promise<(PluginOption | PluginOption[])[]>;
export { createPlugins };