Я следовал руководству по созданию собственной темы Gatsby и достиг этого шага: https://www.gatsbyjs.org/tutorial/building-a-theme/#set -up-sitegatsby-config js
Когда я запускаю yarn workspace site develop
Я получаю следующее:
"blog-theme" threw an error while running the createPages lifecycle:
[true-case-path]: Called with .yarn/$$virtual/blog-theme-virtual-074db21a6c/1/blog-theme/src/templates/events.js, but no matching file exists
45 | exports.createPages = async ({ actions, graphql, reporter }, options) => {
46 | const basePath = options.basePath || "/"
> 47 | actions.createPage({
| ^
48 | path: basePath,
49 | component: require.resolve(`./src/templates/events.js`),
50 | })
File: ../.yarn/$$virtual/blog-theme-virtual-074db21a6c/1/blog-theme/gatsby-node.js:47:13
Мой код соответствует примеру учебника, поэтому я не уверен, что здесь происходит не так. Что-то не так с component
Я думаю.