mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-10-13 18:22:13 +08:00
22 lines
564 B
TypeScript
22 lines
564 B
TypeScript
import type { ServerOptions } from 'vite';
|
|
// eslint-disable-next-line antfu/no-import-dist
|
|
import type { ViteBuildConfig } from './dist/index.d.mjs';
|
|
|
|
declare module '@fesjs/fes' {
|
|
interface PluginBuildConfig extends ViteBuildConfig {
|
|
|
|
}
|
|
|
|
interface FesConfig {
|
|
terserOptions?: any;
|
|
inlineLimit?: number;
|
|
outputPath?: string;
|
|
proxy?: ServerOptions['proxy'];
|
|
title?: string;
|
|
mountElementId?: string;
|
|
publicPath?: string;
|
|
alias?: Record<string, string>;
|
|
autoprefixer?: any;
|
|
}
|
|
}
|