Skip to content

Commit

Permalink
Update angular.json
Browse files Browse the repository at this point in the history
  • Loading branch information
VolkanSah committed May 20, 2024
1 parent a388233 commit d137143
Showing 1 changed file with 38 additions and 3 deletions.
41 changes: 38 additions & 3 deletions angular.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,49 @@
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"Angular-GPT": {
"projectType": "application",
"schematics": {},
"root": "",
"sourceRoot": "src",
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"outputPath": "dist/Angular-GPT"
"outputPath": "dist/Angular-GPT",
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "tsconfig.app.json",
"assets": ["src/favicon.ico", "src/assets"],
"styles": ["src/styles.css"],
"scripts": []
},
"configurations": {
"production": {
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.prod.ts"
}
],
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"extractCss": true,
"namedChunks": false,
"aot": true,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true
}
}
}
}
}
}
},
"defaultProject": "Angular-GPT"
}

0 comments on commit d137143

Please sign in to comment.