Skip to content

Commit 79032a7

Browse files
committed
fix: upgrade to Angular v12
add README details
1 parent 499aeac commit 79032a7

10 files changed

+1199
-930
lines changed

README.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
1-
# A11y in Angular demo : A Dumpling Shop
1+
# Build more accessible Angular apps : Dumpling Shop demo
22

3-
Demo for the [Build more accessible Angular apps](codelabs.developers.google.com/angular-a11y) codelab.
3+
Demo for the [Build more accessible Angular apps](https://codelabs.developers.google.com/angular-a11y) codelab.
44

55

66
## Get set up
77

88
Run `npm install` to install the dependencies required to run the server.
99

10+
Run `git checkout get-started` to use the `get-started` branch for the codelab. All solutions can be found in the `main` branch.
11+
1012
Run `ng serve --hmr` to run the server.
1113

12-
Open a browser tab to [http://localhost:4200](). The app will automatically reload if you change any of the source files.
14+
Open a browser tab to [http://localhost:4200](http://localhost:4200). The app will automatically reload if you change any of the source files.
1315

1416

1517
## Disclaimer

angular.json

+9-2
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,22 @@
2828
"main": "src/main.ts",
2929
"polyfills": "src/polyfills.ts",
3030
"tsConfig": "tsconfig.app.json",
31-
"aot": true,
3231
"assets": [
3332
"src/favicon.ico",
3433
"src/assets"
3534
],
3635
"styles": [
3736
"src/styles.scss"
3837
],
39-
"scripts": []
38+
"inlineStyleLanguage": "scss",
39+
"scripts": [],
40+
"vendorChunk": true,
41+
"extractLicenses": false,
42+
"buildOptimizer": false,
43+
"sourceMap": true,
44+
"optimization": false,
45+
"namedChunks": true,
46+
"aot": false
4047
},
4148
"configurations": {
4249
"production": {

0 commit comments

Comments
 (0)