Skip to content

Commit 4f46d7b

Browse files
committed
update 02-navigation
1 parent f16e48b commit 4f46d7b

File tree

8 files changed

+16
-15
lines changed

8 files changed

+16
-15
lines changed

04-frameworks/08-nextjs/02-navigation/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ export default CarPage;
131131
132132
Open `http://localhost:3000/cars/audi`;
133133

134-
Title tags are a very important part for SEO purposes, thats why we can [modifying head](https://nextjs.org/docs/app/building-your-application/routing/pages-and-layouts#modifying-head) to update html's head on each page:
134+
Title tags are a very important part for SEO purposes, thats why we can [modifying head](https://nextjs.org/docs/app/building-your-application/optimizing/metadata) to update html's head on each page:
135135

136136
_./app/page.tsx_
137137

04-frameworks/08-nextjs/02-navigation/api-server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
"author": "Lemoncode",
1010
"license": "MIT",
1111
"devDependencies": {
12-
"json-server": "^0.17.3"
12+
"json-server": "^1.0.0-beta.2"
1313
}
1414
}

04-frameworks/08-nextjs/02-navigation/app/cars/page.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ const CarListPage = () => {
77
const onNavigateBack = () => {
88
router.push('/'); // or router.back()
99
};
10+
1011
return (
1112
<>
1213
<h2>Car list page</h2>

04-frameworks/08-nextjs/02-navigation/next-env.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
/// <reference types="next/image-types/global" />
33

44
// NOTE: This file should not be edited
5-
// see https://nextjs.org/docs/basic-features/typescript for more information.
5+
// see https://nextjs.org/docs/app/building-your-application/configuring/typescript for more information.

04-frameworks/08-nextjs/02-navigation/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@
1212
"author": "Lemoncode",
1313
"license": "MIT",
1414
"dependencies": {
15-
"next": "^14.1.0",
16-
"react": "^18.2.0",
17-
"react-dom": "^18.2.0"
15+
"next": "^14.2.9",
16+
"react": "^18.3.1",
17+
"react-dom": "^18.3.1"
1818
},
1919
"devDependencies": {
20-
"@types/node": "20.11.16",
21-
"@types/react": "^18.2.55",
22-
"@types/react-dom": "^18.2.19",
23-
"typescript": "^5.3.3"
20+
"@types/node": "22.5.4",
21+
"@types/react": "^18.3.5",
22+
"@types/react-dom": "^18.3.0",
23+
"typescript": "^5.6.2"
2424
}
2525
}

04-frameworks/08-nextjs/02-navigation/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
"strict": false,
1111
"noEmit": true,
1212
"incremental": true,
13-
"esModuleInterop": true,
1413
"module": "esnext",
14+
"esModuleInterop": true,
1515
"moduleResolution": "node",
1616
"resolveJsonModule": true,
1717
"isolatedModules": true,

07-cloud/99-bonus/05-azure-static/.github/workflows/cd.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
repo_token: ${{ secrets.GITHUB_TOKEN }}
3232
action: "upload"
3333
app_location: "/dist"
34-
ski_app_build: true
35-
ski_api_build: true
34+
skip_app_build: true
35+
skip_api_build: true
3636
env:
3737
NODE_VERSION: 20.17.0

07-cloud/99-bonus/05-azure-static/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,8 @@ jobs:
9191
repo_token: ${{ secrets.GITHUB_TOKEN }}
9292
action: "upload"
9393
app_location: "/dist"
94-
ski_app_build: true
95-
ski_api_build: true
94+
skip_app_build: true
95+
skip_api_build: true
9696
env:
9797
NODE_VERSION: 20.17.0
9898

0 commit comments

Comments
 (0)