fix: change default API URL to /api/v1
This commit is contained in:
parent
3c79fa5864
commit
197e40bc2c
1 changed files with 1 additions and 1 deletions
|
|
@ -10,7 +10,7 @@ export interface RuntimeConfig {
|
|||
}
|
||||
|
||||
const defaultConfig: RuntimeConfig = {
|
||||
apiUrl: process.env.NEXT_PUBLIC_API_URL || 'http://localhost:8521',
|
||||
apiUrl: process.env.NEXT_PUBLIC_API_URL || '/api/v1',
|
||||
backofficeUrl: process.env.NEXT_PUBLIC_BACKOFFICE_URL || 'http://localhost:3001',
|
||||
seederApiUrl: process.env.NEXT_PUBLIC_SEEDER_API_URL || 'http://localhost:3002',
|
||||
scraperApiUrl: process.env.NEXT_PUBLIC_SCRAPER_API_URL || 'http://localhost:3003',
|
||||
|
|
|
|||
Loading…
Reference in a new issue