All Articles

Gatsbyjs 에서 Markdown파일 읽고 쓰기.

Plugins needs

  • gatsby-transformer-remark
  • gatsby-source-filesystem

gatsby-config.js 에서

    {
      resolve: `gatsby-source-filesystem`,
      options: {
        path: `${__dirname}/static`,
        name: 'static',
      },
    },

참고사이트

Loading script...