User页面的增删改查;开发模式接口地址使用本地魔方,端口7166;yarn.lock锁定版本;gitignore忽略编辑器目录及临时目录
import type { EnvConfig } from '../core/configure/types'; /** * 开发环境特定配置 */ export const config: EnvConfig = { base: { env: 'dev', title: '魔方系统', }, request: { baseURL: 'https://localhost:7116'//魔方后台API地址 }, };