You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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