import type { CubeFrontConfig } from '../types'
/**
* 生产环境配置
*/
export const productionConfig: Partial<{
[key in keyof CubeFrontConfig]: Partial<CubeFrontConfig[key]>
}> = {
base: {
env: 'production',
// 其他基础配置
},
// api: {
// baseURL: '/api',
// // 其他API配置
// },
}
|