我在我的gatsby应用程序中遇到了一个问题,同时试图通过npm start/gatsby develop启动服务器。上一次使用时,我没有遇到任何问题,但下一次尝试启动时,错误显示为:
Error in "E:\MDX_Blog\mdxBlog\node_modules\gatsby-plugin-mdx\gatsby-node.js": Unexpected template string
附上截图供您参考。
Gatsby config.js
module.exports = {
plugins: [
{
resolve: `gatsby-source-filesystem`,
options: {
name: `posts`,
path: `${__dirname}/src/posts/`,
},
},
`gatsby-plugin-mdx`,
`gatsby-plugin-transition-link`,
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
],
}
1条答案
按热度按时间zpgglvta1#
正如消息所说,这是一个语法错误。缺少关闭
}
。