Skip to content

Commit 16e5a1a

Browse files
committed
minor
1 parent e1f7dd4 commit 16e5a1a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

modules/config/index.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ if (env.DEV_TRACE) {
2424
let config = module.exports = {
2525
urlBase: {
2626
// 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',
2929
},
3030
urlBaseProduction: {
3131
// 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'
3434
},
3535

3636
server: {

0 commit comments

Comments
 (0)