Skip to content

Commit

Permalink
update to angular 19
Browse files Browse the repository at this point in the history
  • Loading branch information
strmark committed Nov 21, 2024
1 parent de42ee8 commit 84af8b2
Show file tree
Hide file tree
Showing 9 changed files with 2,469 additions and 1,671 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ sudo npm install -g @angular/cli
Install dependencies
``` bash
cd kpiradio_frontend
npm install
npm install --legacy-peer-deps
```

### Run a development server
Expand Down
18 changes: 9 additions & 9 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,15 @@
"schematics": {},
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"builder": "@angular-devkit/build-angular:application",
"options": {
"outputPath": "dist/piradio",
"outputPath": {
"base": "dist/piradio"
},
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
"polyfills": [
"src/polyfills.ts"
],
"tsConfig": "src/tsconfig.app.json",
"assets": [
"src/favicon.ico",
Expand All @@ -31,12 +34,11 @@
],
"scripts": [],
"aot": false,
"vendorChunk": true,
"extractLicenses": false,
"buildOptimizer": false,
"sourceMap": true,
"optimization": false,
"namedChunks": true
"namedChunks": true,
"browser": "src/main.ts"
},
"configurations": {
"production": {
Expand All @@ -52,8 +54,6 @@
"namedChunks": false,
"aot": true,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true,
"budgets": [
{
"type": "initial",
Expand Down
Loading

0 comments on commit 84af8b2

Please sign in to comment.