Skip to content

Commit acc971b

Browse files
committed
Add staging configuration to frontend console
1 parent 9b97a8d commit acc971b

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

frontend/angular.json

+14
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,20 @@
5858
},
5959
"outputHashing": "all"
6060
},
61+
"staging": {
62+
"fileReplacements": [
63+
{
64+
"replace": "src/environments/environment.ts",
65+
"with": "src/environments/environment.staging.ts"
66+
}
67+
],
68+
"optimization": {
69+
"styles": {
70+
"inlineCritical": false
71+
}
72+
},
73+
"outputHashing": "all"
74+
},
6175
"testing": {
6276
"fileReplacements": [
6377
{
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
// Copyright 2024 Logan Magee
2+
//
3+
// SPDX-License-Identifier: AGPL-3.0-only
4+
5+
export const environment = {
6+
developerApiUrl: 'https://staging.developer.api.accrescent.app',
7+
};

0 commit comments

Comments
 (0)