env.js 945 B

12345678910111213141516171819202122
  1. export default {
  2. env: {
  3. school_product: 'school',
  4. school_premium_product: 'school-premium',
  5. artist_product: 'artist',
  6. artist_premium_product: 'artist-premium',
  7. manager_product: 'manager',
  8. },
  9. publicRuntimeConfig: {
  10. http: {
  11. browserBaseURL: process.env.NODE_ENV !== 'production' ? 'https://local.new.api.opentalent.fr' : 'https://local.new.api.opentalent.fr'
  12. },
  13. baseURL_Legacy: process.env.NODE_ENV !== 'production' ? 'https://local.api.opentalent.fr' : 'https://local.api.opentalent.fr',
  14. baseURL_adminLegacy: process.env.NODE_ENV !== 'production' ? 'https://local.admin.opentalent.fr/#' : 'https://admin.opentalent.fr/#',
  15. },
  16. privateRuntimeConfig: {
  17. http: {
  18. baseURL: process.env.NODE_ENV !== 'production' ? 'http://nginx_new' : 'https://local.api.opentalent.fr'
  19. },
  20. baseURL_Legacy: process.env.NODE_ENV !== 'production' ? 'http://nginx' : 'https://local.api.opentalent.fr'
  21. }
  22. }