Skip to content

Commit f9ecf8e

Browse files
committed
update deps
1 parent af99210 commit f9ecf8e

File tree

5 files changed

+101
-95
lines changed

5 files changed

+101
-95
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
1. Clone this repo
1111
1. Run `npm install`
1212
1. Run `npm run dev` to start the dev server
13-
1. Open http://localhost:3000 in a browser
13+
1. Open http://localhost:3000/<your production base path as defined in course.json> in a browser
1414

1515
_Instructions for deploying the course website to GitHub Pages are below_
1616

@@ -32,7 +32,7 @@ This json file allows you to configure the details of the site. Update the info
3232
- _social.github_ – Your GitHub user name. Optional.
3333
- _description_ – The description you want to show up in search engine results.
3434
- _keywords_ – The SEO keywords for this course. An array of strings
35-
- _productionBaseUrl_ – Typically useful for GitHub Pages. This adds a base path to your project. For GitHub Pages, this will be the name of your repo. For example, this site's base URL is `/next-course-starter` because the production URL for this site is `btholt.github.io/next-course-starer`. Do note this will also make your dev server's base URL this as well so you can catch problems before they go to production.
35+
- _productionBaseUrl_ – Typically useful for GitHub Pages. This adds a base path to your project. For GitHub Pages, this will be the name of your repo. For example, this site's base URL is `/next-course-starter` because the production URL for this site is `btholt.github.io/next-course-starer`. Do note this will also make your dev server's base URL this as well so you can catch problems before they go to production. **IF THIS IS SET, YOUR / PATH WILL 404**
3636
- _csvPath_ – A CSV with the meta data for your lessons will be created at this path when you build or export the project. If you delete this config option it will not generate a CSV.
3737

3838
### styles/variables.css

course.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
},
66
"title": "Next.js Course Starter Kit",
77
"subtitle": "for Frontend Masters",
8-
"frontendMastersLink": "https://frontendmasters.com/courses/complete-react-v6/",
8+
"frontendMastersLink": "https://frontendmasters.com/courses/complete-react-v8/",
99
"social": {
1010
"linkedin": "btholt",
1111
"github": "btholt",

next.config.js

-13
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,6 @@ const config = {
1111
env: {
1212
BASE_URL,
1313
},
14-
async redirects() {
15-
if (BASE_URL) {
16-
return [
17-
{
18-
source: "/",
19-
destination: BASE_URL,
20-
basePath: false,
21-
permanent: false,
22-
},
23-
];
24-
}
25-
return [];
26-
},
2714
};
2815

2916
export default config;

package-lock.json

+90-71
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,19 @@
1111
"seo": "node summary/index.js"
1212
},
1313
"dependencies": {
14-
"@fortawesome/fontawesome-free": "^6.5.1",
14+
"@fortawesome/fontawesome-free": "^6.5.2",
1515
"gray-matter": "^4.0.3",
1616
"highlight.js": "^11.9.0",
17-
"marked": "^11.1.1",
18-
"marked-highlight": "^2.1.1",
19-
"next": "^14.0.4",
20-
"react": "^18.2.0",
21-
"react-dom": "^18.2.0",
22-
"title-case": "^4.2.0"
17+
"marked": "^13.0.1",
18+
"marked-highlight": "^2.1.3",
19+
"next": "^14.2.4",
20+
"react": "^18.3.1",
21+
"react-dom": "^18.3.1",
22+
"title-case": "^4.3.1"
2323
},
2424
"devDependencies": {
2525
"chatgpt": "^5.2.5",
2626
"convert-array-to-csv": "^2.0.0",
27-
"dotenv": "^16.3.1"
27+
"dotenv": "^16.4.5"
2828
}
2929
}

0 commit comments

Comments
 (0)