Skip to content

Commit

Permalink
Merge pull request #4
Browse files Browse the repository at this point in the history
downloadsys
  • Loading branch information
jairomr authored Sep 11, 2023
2 parents b0a6791 + bef5836 commit cb6fe72
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 3 deletions.
29 changes: 28 additions & 1 deletion src/client/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@
"with": "src/environments/environment.prod.ts"
}
],

"outputHashing": "all"
},
"development": {
Expand All @@ -117,7 +118,33 @@
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true
}
},
"homolog": {
"budgets": [
{
"type": "initial",
"maximumWarning": "8mb",
"maximumError": "8mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "8mb",
"maximumError": "8mb"
}
],
"optimization": {
"scripts": true,
"styles": {
"minify": true,
"inlineCritical": false
},
"fonts": true
},
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.homolog.ts"
},
},
"defaultConfiguration": "production"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ export class GeneralMapComponent implements OnInit, Ruler, AfterContentChecked {
source: new XYZ({
wrapX: false,
url:
'https://api.mapbox.com/styles/v1/mapbox/light-v10/tiles/{z}/{x}/{y}?access_token=pk.eyJ1IjoibWFwYm94IiwiYSI6ImNpejY4NXVycTA2emYycXBndHRqcmZ3N3gifQ.rJcFIG214AriISLbB6B5aw'
'https://api.mapbox.com/styles/v1/mapbox/light-v10/tiles/{z}/{x}/{y}?access_token=pk.eyJ1IjoiamFpcm9tciIsImEiOiJjbG0wd253b3MwZHBoM2ptMXg2eWNnZTk0In0.aLY0DcNuQrcpk_mFUHODuw'
}),
visible: true
})
Expand All @@ -315,7 +315,7 @@ export class GeneralMapComponent implements OnInit, Ruler, AfterContentChecked {
source: new XYZ({
wrapX: false,
url:
'https://api.mapbox.com/styles/v1/mapbox/dark-v10/tiles/{z}/{x}/{y}?access_token=pk.eyJ1IjoibWFwYm94IiwiYSI6ImNpejY4NXVycTA2emYycXBndHRqcmZ3N3gifQ.rJcFIG214AriISLbB6B5aw'
'https://api.mapbox.com/styles/v1/mapbox/dark-v10/tiles/{z}/{x}/{y}?access_token=pk.eyJ1IjoiamFpcm9tciIsImEiOiJjbG0wd253b3MwZHBoM2ptMXg2eWNnZTk0In0.aLY0DcNuQrcpk_mFUHODuw'
}),
visible: false
})
Expand Down

0 comments on commit cb6fe72

Please sign in to comment.