This repository was archived by the owner on Mar 13, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +12
-4
lines changed Expand file tree Collapse file tree 2 files changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -2,15 +2,15 @@ module.exports = Object.freeze({
2
2
APP_CONFIG : [
3
3
{
4
4
'appEnv' : 'dev' ,
5
- 'mfeConfigPath' : '/micro-frontends-config-development.json' ,
5
+ 'mfeConfigPath' : '/config/ micro-frontends-config-development.json' ,
6
6
'mfeIndexPath' : '/index.html' ,
7
- 'mfeRoutesPath' : '/micro-frontends-routes-development.txt'
7
+ 'mfeRoutesPath' : '/config/ micro-frontends-routes-development.txt'
8
8
} ,
9
9
{
10
10
'appEnv' : 'prod' ,
11
- 'mfeConfigPath' : '/micro-frontends-config-production.json' ,
11
+ 'mfeConfigPath' : '/config/ micro-frontends-config-production.json' ,
12
12
'mfeIndexPath' : '/index.html' ,
13
- 'mfeRoutesPath' : '/micro-frontends-routes-production.txt'
13
+ 'mfeRoutesPath' : '/config/ micro-frontends-routes-production.txt'
14
14
} ,
15
15
{
16
16
'appEnv' : 'local-multi' ,
Original file line number Diff line number Diff line change @@ -48,6 +48,14 @@ module.exports = (webpackConfigEnv) => {
48
48
from : "src/images" ,
49
49
to : "./" ,
50
50
} ,
51
+ {
52
+ from : "config/*development.*" ,
53
+ to : "./" ,
54
+ } ,
55
+ {
56
+ from : "config/*production.*" ,
57
+ to : "./" ,
58
+ } ,
51
59
] ,
52
60
} ) ,
53
61
] ,
You can’t perform that action at this time.
0 commit comments