Skip to content

Commit 9c319dd

Browse files
Merge pull request #33 from codedthemes/code-implement
all pages code implements
2 parents e59246e + 72f18c3 commit 9c319dd

58 files changed

Lines changed: 10789 additions & 14071 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

angular.json

Lines changed: 22 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,34 @@
1515
"prefix": "app",
1616
"architect": {
1717
"build": {
18-
"builder": "@angular-devkit/build-angular:browser",
18+
"builder": "@angular-devkit/build-angular:application",
1919
"options": {
2020
"allowedCommonJsDependencies": ["apexcharts"],
21-
"outputPath": "dist",
21+
"outputPath": {
22+
"base": "dist",
23+
"browser": ""
24+
},
2225
"index": "src/index.html",
23-
"main": "src/main.ts",
24-
"polyfills": "",
26+
"browser": "src/main.ts",
27+
"polyfills": [],
2528
"tsConfig": "tsconfig.app.json",
2629
"inlineStyleLanguage": "scss",
2730
"assets": ["src/favicon.ico", "src/assets"],
2831
"styles": ["src/styles.scss"],
29-
"scripts": []
32+
"scripts": [],
33+
"stylePreprocessorOptions": {
34+
"includePaths": [
35+
".",
36+
"node_modules"
37+
],
38+
"sass": {
39+
"silenceDeprecations": [
40+
"color-functions",
41+
"global-builtin",
42+
"import"
43+
]
44+
}
45+
}
3046
},
3147
"configurations": {
3248
"production": {
@@ -58,12 +74,8 @@
5874
}
5975
},
6076
"development": {
61-
"buildOptimizer": false,
6277
"optimization": false,
63-
"vendorChunk": true,
64-
"extractLicenses": false,
65-
"sourceMap": true,
66-
"namedChunks": true
78+
"sourceMap": true
6779
}
6880
},
6981
"defaultConfiguration": "production"

0 commit comments

Comments
 (0)