config.ts 253 B

12345678910
  1. const environmentVariable = "test";
  2. const apiUrlInfo = {
  3. dev: "https://dev.kt.colexiu.com",
  4. test: "https://test.kt.colexiu.com",
  5. online: "https://kt.colexiu.com",
  6. };
  7. const baseUrl = apiUrlInfo[environmentVariable];
  8. module.exports = {
  9. baseUrl
  10. };