Skip to content

Commit 6486ed2

Browse files
committed
update
1 parent 6f3535e commit 6486ed2

2 files changed

Lines changed: 21 additions & 13 deletions

File tree

angular.json

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@
4141
"budgets": [
4242
{
4343
"type": "initial",
44-
"maximumWarning": "500kB",
45-
"maximumError": "1MB"
44+
"maximumWarning": "1.5MB",
45+
"maximumError": "2MB"
4646
},
4747
{
4848
"type": "anyComponentStyle",
@@ -51,12 +51,21 @@
5151
}
5252
],
5353
"outputHashing": "all",
54-
"serviceWorker": "ngsw-config.json"
54+
"serviceWorker": "ngsw-config.json",
55+
"optimization": true,
56+
"buildOptimizer": true,
57+
"sourceMap": false,
58+
"extractLicenses": true,
59+
"namedChunks": false,
60+
"vendorChunk": false
5561
},
5662
"development": {
5763
"optimization": false,
5864
"extractLicenses": false,
59-
"sourceMap": true
65+
"sourceMap": true,
66+
"namedChunks": true,
67+
"vendorChunk": true,
68+
"buildOptimizer": false
6069
}
6170
},
6271
"defaultConfiguration": "production"

dev.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,12 @@
11
<!-- install command -->
22
npm install --save apexcharts ng-apexcharts
3-
npm install lucide-angular
43
npm install marked
54
npm install -g @compodoc/compodoc
65
npm install jspdf jspdf-autotable xlsx
76

87

9-
<!-- Next Task -->
10-
1. calender done✅
11-
2. update list page done✅
12-
3. update settings to add a cutom category
13-
4. add a budget section in sidebar
14-
5. add analysis section in sidebar
15-
6. add category wise list in home page
168

17-
commands
9+
commands:
1810

1911
# First install Globally Than use compodoc
2012

@@ -34,3 +26,10 @@ compodoc -p tsconfig.json -w
3426

3527
## Serve Documentation
3628
compodoc -s
29+
30+
31+
32+
# Build for production
33+
ng build --configuration production
34+
# or
35+
ng build --prod

0 commit comments

Comments
 (0)