mirror of
https://gitee.com/WeBank/fes.js.git
synced 2024-12-05 05:08:09 +08:00
15 lines
490 B
TypeScript
15 lines
490 B
TypeScript
import type {UserConfig} from 'vite';
|
|
import type {Options} from '@vitejs/plugin-vue'
|
|
import {Options as PolyfillOptions } from '@vitejs/plugin-legacy'
|
|
import createPlugin from '@vitejs/plugin-vue-jsx'
|
|
import {createHtmlPlugin} from 'vite-plugin-html'
|
|
|
|
|
|
export interface ViteBuildConfig {
|
|
viteOption?: UserConfig;
|
|
viteVuePlugin?: Options;
|
|
viteVueJsx?: Parameters<typeof createPlugin>[0];
|
|
viteLegacy?: PolyfillOptions;
|
|
viteHtml?: Parameters<typeof createHtmlPlugin>[0]
|
|
}
|