您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

server.js 220B

1234567891011
  1. let url = "";
  2. switch(process.env.NODE_ENV) {
  3. case 'production':
  4. url = 'https://demisel.space/teamway/garage/';
  5. break;
  6. case 'development':
  7. default:
  8. url = 'http://192.168.0.12:8080';
  9. }
  10. export default url