mirror of
https://gitee.com/nocobase/nocobase.git
synced 2025-05-05 13:39:24 +08:00
* feat: auto download pro * feat: improve code * feat: improve code * feat: improve code * feat: improve code * fix: test error * fix: improve code * fix: yarn install error * fix: build error * fix: generatePlugins * fix: test error * fix: download pro command * fix: run error * feat: version * fix: require packageJson * fix: improve code * feat: improve code * fix: improve code * fix: test error * fix: test error * fix: improve code * fix: removable * fix: error * fix: error
29 lines
642 B
TypeScript
29 lines
642 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 resolveNocobasePackagesAlias(config: any): {};
|
|
export declare class IndexGenerator {
|
|
constructor(outputPath: string, pluginsPath: string[]): void;
|
|
generate(): void;
|
|
};
|
|
|
|
export declare function generatePlugins(): {}
|