Cannot read properties of null (reading 'split')

  31 |
  32 |   edges.forEach(({ node }) => {
> 33 |     const postCategories = node.frontmatter.categories.split(' ');
     |                                                        ^
  34 |     postCategories.forEach((category) => categorySet.add(category));
  35 |   });
  36 |

File: gatsby-node.js:33:56

index.md를 생성하고 바로 이런 오류가 났다.

해결방법: frontmatter에 categories를 추가하면 된다.


category

현재 태그는 활용되고 있지 않으며, 카테고리는 블로그 리스트 하단에 보이고, 카테고리로 포스팅을 검색 가능하게 한다.


주의할 점

gatsby developnpm run deploy을 동시에 하면 오류난다.


마무리


공부할 겸 이 블로그 테마에 맞게 블로그를 수정하거나 내가 원하는 기능과 디자인으로 바꿔야겠다.