| 12345678910111213141516171819202122 |
- export default {
- env: {
- school_product: 'school',
- school_premium_product: 'school-premium',
- artist_product: 'artist',
- artist_premium_product: 'artist-premium',
- manager_product: 'manager',
- },
- publicRuntimeConfig: {
- http: {
- browserBaseURL: process.env.NODE_ENV !== 'production' ? 'https://local.new.api.opentalent.fr' : 'https://local.new.api.opentalent.fr'
- },
- baseURL_Legacy: process.env.NODE_ENV !== 'production' ? 'https://local.api.opentalent.fr' : 'https://local.api.opentalent.fr',
- baseURL_adminLegacy: process.env.NODE_ENV !== 'production' ? 'https://local.admin.opentalent.fr/#' : 'https://admin.opentalent.fr/#',
- },
- privateRuntimeConfig: {
- http: {
- baseURL: process.env.NODE_ENV !== 'production' ? 'http://nginx_new' : 'https://local.api.opentalent.fr'
- },
- baseURL_Legacy: process.env.NODE_ENV !== 'production' ? 'http://nginx' : 'https://local.api.opentalent.fr'
- }
- }
|