我是gatsby的新手,会做出反应。我们正在使用gatsby和解耦的drupal为一个小型项目构建站点。由于在运行“ gatsby开发”时连接了前端和后端,因此出现以下错误。
./ node_modules / Gatsby / cache-dir / gatsby-browser-entry.js 22:4中的错误 模块解析失败:意外的令牌(22:4)
You may need an appropriate loader to handle this file type.
|
| return (
> <React.Fragment>
| {finalData && render(finalData)}
| {!finalData && <div>Loading (StaticQuery)</div>}
@ ./src/pages/index.js 24:0-33 157:19-26
@ ./.cache/sync-requires.js
@ ./.cache/app.js
@ multi ./node_modules/event-source-polyfill/src/eventsource.js (webpack)-hot-middleware/client.js?path=/__webpack_hmr&reload=true&overlay=false
答案 0 :(得分:0)
遇到此问题并找到了解决方法:
// import { Link } from "gatsby" // error
import Link from "gatsby-link" // not error
对我有用! :)
字体:https://github.com/gatsbyjs/gatsby/issues/10668#issuecomment-546596273