我是gatsby的新手。我经历了将gatsby-source-filesystem
添加到gatsby-config.js
的过程,并给了我第一个测试.md
文件的正确路径:
{
resolve: `gatsby-source-filesystem`,
options: {
name: `src`,
path: `$(__dirname)/src/posts`
}
}
但是,我不断收到以下错误消息:
The path passed to gatsby-source-filesystem does not exist on your file system: `${__dirname}/src/` Please pick a path to an existing directory
有人可以帮助我了解为什么它不起作用吗?