Merge branch 'Yann_Dev'
Yann authored at 2025-06-22 23:50:40
258.00 B
cube-front
import type { EnvConfig } from '../core/configure/types';

/**
 * 生产环境特定配置
 */
export const config: EnvConfig = {
  base: {
    env: 'production',
    title: '魔方系统',
  },
  request: {
    baseURL: 'https://cube.newlifex.com',
  },
};