feat: 初始化提交
笑笑 authored at 2025-05-13 21:25:06
327.00 B
cube-front
import type { CubeFrontConfig } from '../types'

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