Skip to content

Commit 6083f5d

Browse files
authored
Merge pull request #381 from aspnetboilerplate/Appconfig-production
Added appconfig.production.json
2 parents 00a48bd + 2651293 commit 6083f5d

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"remoteServiceBaseUrl": "http://localhost:21021",
3+
"appBaseUrl": "http://localhost:4200",
4+
"localeMappings": [
5+
{
6+
"from": "pt-BR",
7+
"to": "pt"
8+
},
9+
{
10+
"from": "zh-CN",
11+
"to": "zh"
12+
},
13+
{
14+
"from": "he-IL",
15+
"to": "he"
16+
}
17+
]
18+
}

angular/src/environments/environment.prod.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
export const environment = {
44
production: true,
55
hmr: false,
6-
appConfig: 'appconfig.json'
6+
appConfig: 'appconfig.production.json'
77
};

0 commit comments

Comments
 (0)