diff --git a/angular.json b/angular.json index 0102fa7..a321750 100644 --- a/angular.json +++ b/angular.json @@ -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" } -