Developing a Tech Blog with React-Based Gatsby
This is a class to create your own blog using Gatsby, a React-based static site generation framework :)

Announcement of update to the lecture on developing a technical blog with React-based Gatsby
Hello, students!
I am writing this to inform you that the lecture has been updated this time.
It has been updated to take into account deprecated libraries and coding conventions used in the example blog, and the changes are summarized below!
Added all Gatsby configuration files in the root directory to the
.eslintignorefile to avoid unnecessary errors when viewing them.I removed the semicolons from all React-related files by changing
semioption in the.prettierrcfile tofalsewhich requires semicolons to be inserted at the end of sentences.The Props type defined at the top of the React component file has been changed from being defined as
Interfaceto being defined asType.I defined a type when querying post data via GraphQL, but since the type is used multiple times, I created
src/types/PostItem.types.tsfile and defined the type here.The
gatsby-imagelibrary has been deprecated and replaced withgatsby-plugin-imagelibrary.
Because the coding style and content have changed throughout the course, we recommend that you reread all parts except the chapters on Getting to Know Gatsby and Setting Up the Development Environment, Simply Displaying a Page, Deploying a Site, and Registering a Site in Webmaster Tools .
However, there is no major problem in following the existing lecture contents, so students can choose whichever is most convenient for them :)
Free




