如何修复“ $(__ dirname)/ src /”路径在“ gatsby-source-filesystem”中不存在

时间:2019-11-02 08:26:00

标签: node.js gatsby

我是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

有人可以帮助我了解为什么它不起作用吗?

0 个答案:

没有答案