config.ts 294 B

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