sealday
d99bd8f4a5
Co-authored-by: sealday <sealday@gmail.com> Reviewed-on: daoyoucloud/tachybase#1184
27 lines
595 B
TypeScript
27 lines
595 B
TypeScript
export declare function getUmiConfig(): {
|
|
alias: Record<string, string>;
|
|
define: {
|
|
'process.env.API_BASE_URL': string;
|
|
};
|
|
proxy: {
|
|
[x: string]:
|
|
| {
|
|
target: string;
|
|
changeOrigin: boolean;
|
|
}
|
|
| {
|
|
target: string;
|
|
changeOrigin: boolean;
|
|
pathRewrite: {
|
|
[x: string]: string;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
export declare function resolveTachybasePackagesAlias(config: any): {};
|
|
export declare class IndexGenerator {
|
|
constructor(outputPath: string, pluginsPath: string[]): void;
|
|
generate(): void;
|
|
}
|