Skip to content

Commit 8c41c32

Browse files
Upgrade to Angular 18
1 parent 12626a6 commit 8c41c32

File tree

8 files changed

+7328
-6654
lines changed

8 files changed

+7328
-6654
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
This repository contains the code of the course [Angular SSR In Depth (formerly Angular Universal)](https://angular-university.io/course/angular-universal-course).
55

6-
This course repository is updated to Angular v17.
6+
This course repository is updated to Angular v18.
77

88
![Angular SSR In Depth (formerly Angular Universal)](https://angular-university.s3-us-west-1.amazonaws.com/course-images/angular-universal-course.jpg)
99

angular.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,15 @@
1515
"prefix": "app",
1616
"architect": {
1717
"build": {
18-
"builder": "@angular-devkit/build-angular:browser",
18+
"builder": "@angular-devkit/build-angular:application",
1919
"options": {
20-
"outputPath": "dist/angular-ssr/browser",
20+
"outputPath": {
21+
"base": "dist/angular-ssr"
22+
},
2123
"index": "src/index.html",
22-
"main": "src/main.ts",
23-
"polyfills": "src/polyfills.ts",
24+
"polyfills": [
25+
"src/polyfills.ts"
26+
],
2427
"tsConfig": "tsconfig.app.json",
2528
"assets": [
2629
"src/favicon.ico",
@@ -30,12 +33,11 @@
3033
"src/styles.scss"
3134
],
3235
"scripts": [],
33-
"vendorChunk": true,
3436
"extractLicenses": false,
35-
"buildOptimizer": false,
3637
"sourceMap": true,
3738
"optimization": false,
38-
"namedChunks": true
39+
"namedChunks": true,
40+
"browser": "src/main.ts"
3941
},
4042
"configurations": {
4143
"development": {
@@ -55,8 +57,6 @@
5557
"sourceMap": false,
5658
"namedChunks": false,
5759
"extractLicenses": true,
58-
"vendorChunk": false,
59-
"buildOptimizer": true,
6060
"budgets": [
6161
{
6262
"type": "initial",

0 commit comments

Comments
 (0)