File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -24,13 +24,13 @@ if (env.DEV_TRACE) {
24
24
let config = module . exports = {
25
25
urlBase : {
26
26
// node may be behind nginx, use this in documents
27
- main : env . BASE_CURRENT_MAIN || env . BASE || 'http://localhost:3000' ,
28
- static : env . BASE_CURRENT_STATIC || env . BASE || 'http://localhost:3000' ,
27
+ main : env . URL_BASE_MAIN || env . URL_BASE || 'http://localhost:3000' ,
28
+ static : env . URL_BASE_STATIC || env . URL_BASE || 'http://localhost:3000' ,
29
29
} ,
30
30
urlBaseProduction : {
31
31
// when even in dev mode we must reference prod, use this (maybe remove it?)
32
- main : env . BASE_PRODUCTION_MAIN || env . BASE || 'http://localhost:3000' ,
33
- static : env . BASE_PRODUCTION_STATIC || env . BASE || 'http://localhost:3000'
32
+ main : env . URL_BASE_PRODUCTION_MAIN || env . URL_BASE || 'http://localhost:3000' ,
33
+ static : env . URL_BASE_PRODUCTION_STATIC || env . URL_BASE || 'http://localhost:3000'
34
34
} ,
35
35
36
36
server : {
You can’t perform that action at this time.
0 commit comments