Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

PROD-1551 header -> qa #81

Merged
merged 11 commits into from
May 24, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
PROD-1551 #comment fix config filenames #time 5m
  • Loading branch information
brooketopcoder committed May 6, 2022
commit 7a5b6b0dd172c2f6dc6129bd330940d1c1996eaa
8 changes: 4 additions & 4 deletions config/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ module.exports = Object.freeze({
APP_CONFIG: [
{
'appEnv': 'dev',
'mfeConfigPath': '/config/micro-frontends-config-development.json',
'mfeConfigPath': '/config/micro-frontends-config-dev.json',
'mfeIndexPath': '/index.html',
'mfeRoutesPath': '/config/micro-frontends-routes-development.txt'
'mfeRoutesPath': '/config/micro-frontends-routes-dev.txt'
},
{
'appEnv': 'prod',
'mfeConfigPath': '/config/micro-frontends-config-production.json',
'mfeConfigPath': '/config/micro-frontends-config-prod.json',
'mfeIndexPath': '/index.html',
'mfeRoutesPath': '/config/micro-frontends-routes-production.txt'
'mfeRoutesPath': '/config/micro-frontends-routes-prod.txt'
},
{
'appEnv': 'local-multi',
Expand Down