我是 Gatsby 新手,我正在学习本教程:https : //www.gatsbyjs.com/docs/creating-plugins/ 学习使用react-intl
. 我将插件放在plugins
项目根目录的文件夹中。
这是插件的演示代码(Demo Project Repo:https ://github.com/85Ryan/gatsby-local-plugin-demo.git )
// ./src/wrap-page-element.js
import * as React from 'react'
import { IntlProvider } from 'react-intl'
const message = {
welcome: 'Welcome',
home: 'Home',
}
const wrapPageElement = ({ element }) => {
const locale = 'en'
return (
<IntlProvider locale={locale} key={locale} messages={message}>
{element}
</IntlProvider>
)
}
export { wrapPageElement }
// gatsby-browser.js
export { wrapPageElement } from './src/wrap-page-element'
// gatsby-ssr.js
export { wrapPageElement } from './src/wrap-page-element'
WebpackError: [React Intl] Could not find required
当我构建 Gatsby 站点时,它因错误intl而崩溃object. <IntlProvider> needs to exist in the component ancestry.
但是当我将插件发布到 npm 时,它工作正常。
谁能帮我找出我的问题在哪里?
谢谢!