Skip to content

Commit

Permalink
build: fix build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
nzbin committed Nov 16, 2024
1 parent 2779425 commit 64703d1
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,20 +67,23 @@
"styles": [
"projects/dev-app/src/styles.scss"
],
"scripts": []
"scripts": [],
"allowedCommonJsDependencies": [
"html2canvas"
]
},
"configurations": {
"production": {
"budgets": [
{
"type": "initial",
"maximumWarning": "500kB",
"maximumError": "1MB"
"maximumWarning": "2MB",
"maximumError": "5MB"
},
{
"type": "anyComponentStyle",
"maximumWarning": "2kB",
"maximumError": "4kB"
"maximumWarning": "4kB",
"maximumError": "10kB"
}
],
"outputHashing": "all"
Expand Down

0 comments on commit 64703d1

Please sign in to comment.