Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
almirhodzic committed Nov 22, 2023
1 parent bf8c0fc commit c0d98c4
Show file tree
Hide file tree
Showing 37 changed files with 693 additions and 659 deletions.
38 changes: 32 additions & 6 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,25 @@
"projects": {
"admin": {
"projectType": "application",
"schematics": {},
"schematics": {
"@schematics/angular:component": {
"skipTests": true
},
"@schematics/angular:service": {
"skipTests": true
},
"@schematics/angular:pipe": {
"skipTests": true
}
},
"root": "",
"sourceRoot": "src",
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"outputPath": "dist/admin",
"outputPath": "dist/frontend",
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": [
Expand All @@ -25,6 +35,7 @@
"src/assets"
],
"styles": [
"node_modules/bootstrap/dist/css/bootstrap.min.css",
"src/styles.css"
],
"scripts": []
Expand All @@ -34,15 +45,21 @@
"budgets": [
{
"type": "initial",
"maximumWarning": "500kb",
"maximumError": "1mb"
"maximumWarning": "5mb",
"maximumError": "4mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "2kb",
"maximumError": "4kb"
}
],
"fileReplacements": [
{
"replace": "src/app/environments/environment.dev.ts",
"with": "src/app/environments/environment.ts"
}
],
"outputHashing": "all"
},
"development": {
Expand All @@ -51,7 +68,13 @@
"vendorChunk": true,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true
"namedChunks": true,
"fileReplacements": [
{
"replace": "src/app/environments/environment.ts",
"with": "src/app/environments/environment.dev.ts"
}
]
}
},
"defaultConfiguration": "production"
Expand All @@ -66,7 +89,10 @@
"browserTarget": "admin:build:development"
}
},
"defaultConfiguration": "development"
"defaultConfiguration": "development",
"options": {
"port": 4200
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
Expand Down
Loading

0 comments on commit c0d98c4

Please sign in to comment.