I used a customized Jekyll blog theme before developing my blog. When I wanted to refresh my blog, I found some free time and used that time to design and develop it myself.
The about page, which guided visitors to my blog and portfolio site, is currently not in use. This is because I decided to delete the portfolio site and focus on managing the blog.
2023-11-18
2023-07-06
2023-07-02
2023-05-25
2023-05-25
2023-05-23
2023-05-22
2023-05-21
2023-04-12
plainTextContent
filed into the GraphQL schema, which allows for the storage of pure text, encompassing HTML and various other formats.2023-04-10
2022-12-04
<link rel='preload'>
, font-display
, and formats (woff2
, woff
, truetype
). As a result of testing on PC/mobile in LTE/Wi-Fi environments and measuring with Lighthouse, the font loading speed has improved.2022-10-02
2022-09-23
2022-09-18
I added the font using an import method before. It is easy to use a way that does not need web fonts, but I wanted to learn how to use web fonts.
I read on Stack Overflow that if I want to use web fonts and make them load faster, I should use font-display: swap;
. When I tried it, the font loading speed got much better.
I thought the font loading problem might also be about code blocks. When I checked, the issue was fixed. I learned that if the font loads slowly, it can cause problems with CSS. This happens because of how the CSSOM tree and DOM tree are created.