Logo white

baoman / Ezquiz_Platform

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Ezquiz_Platform
  • src
  • config
  • index.js
  • feat: 新增错题组卷
    02917cfa
    liufangjia authored
    2024-11-26 16:32:50 +0800  
    Browse Code »
index.js 262 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
const modeUrl = {
  // 开发环境
  development: {
    baseURL: "/api/",
    authBaseURL: "",
    $cdn: "",
  },
  // 生产环境
  production: {
    baseURL: "/api/",
    authBaseURL: "",
    $cdn: "",
  },
};
module.exports = modeUrl[process.env.NODE_ENV];