Skip to content

Commit

Permalink
Add console local config
Browse files Browse the repository at this point in the history
  • Loading branch information
sesposito committed Sep 28, 2023
1 parent 34e6a9e commit b223016
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 12 deletions.
15 changes: 13 additions & 2 deletions console/ui/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,17 @@
"namedChunks": true
},
"configurations": {
"local": {
"buildOptimizer": false,
"optimization": false,
"vendorChunk": true,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true
},
"production": {
"outputPath": "dist/prod",
"deployUrl": "static/",
"baseHref": "/",
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
Expand Down Expand Up @@ -78,7 +86,7 @@
},
"production-nt": {
"outputPath": "dist/prod-nt",
"deployUrl": "static/",
"baseHref": "/",
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
Expand Down Expand Up @@ -114,6 +122,9 @@
"browserTarget": "ui:build"
},
"configurations": {
"local": {
"browserTarget": "ui:build:local"
},
"production": {
"browserTarget": "ui:build:production"
}
Expand Down
6 changes: 3 additions & 3 deletions console/ui/dist/prod-nt/index.html

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion console/ui/dist/prod-nt/static/main.90406e943321b759.js

This file was deleted.

1 change: 1 addition & 0 deletions console/ui/dist/prod-nt/static/main.f133ecab0a8782e2.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions console/ui/dist/prod/index.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions console/ui/dist/prod/static/main.1201486d215da8ad.js

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion console/ui/dist/prod/static/main.9fe54d698b3be879.js

This file was deleted.

4 changes: 2 additions & 2 deletions console/ui/src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ import {AuthenticationComponent} from './account/authentication/authentication.c
import {FriendsComponent} from './account/friends/friends.component';
import {WalletComponent} from './account/wallet/wallet.component';
import {GroupsComponent} from './account/groups/groups.component';
import {GroupMembersComponent} from "./group/members/groupMembers.component";
import {ChatListComponent} from "./channels/chatMessages.component";
import {GroupMembersComponent} from './group/members/groupMembers.component';
import {ChatListComponent} from './channels/chatMessages.component';
import {MatchesComponent} from './matches/matches.component';
import {LeaderboardsComponent} from './leaderboards/leaderboards.component';
import {LeaderboardComponent} from './leaderboard/leaderboard.component';
Expand Down

0 comments on commit b223016

Please sign in to comment.