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
  • fix:前端版本迭代
    ef16e57e
    LH_PC authored
    2024-08-22 09:04:20 +0800  
    Browse Code »
index.js 258 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]