有人设法通过Fela和Styleguidist设置next.js吗?
Styleguidist需要Next.js Webpack配置,但是我不能像这里提到的那样直接链接它:https://react-styleguidist.js.org/docs/webpack.html
我正在使用以下示例应用程序:https://github.com/zeit/next.js/tree/canary/examples/with-fela
这是我的styleguide.config.js的样子:
module.exports = {
components: 'components/**/*.js',
webpackConfig: {
entry: './pages/_document.js',
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
use: {
loader: "babel-loader",
options: {
presets: ['@babel/react']
}
}
}
]
}
}
};
该应用程序可以在Next.js服务器上完美运行,但是Styleguidist服务器会向我显示以下错误消息:
错误:没有上下文中的渲染器,createComponent()无法渲染样式。在应用程序根目录缺少反应堆吗?
可能是因为缺少正确的应用程序根目录?
先谢谢了。
答案 0 :(得分:1)
因此Artem为我提供了一个解决方案,以防万一有人像我一样被卡住,您应该添加一个这样的包装器:
styleguideComponents: {
Wrapper: path.join(__dirname, '/FelaProvider')
},
所以我的styleguide.config.js看起来像下面这样:
const path = require('path')
module.exports = {
components: 'components/**/*.js',
styleguideComponents: {
Wrapper: path.join(__dirname, '/FelaProvider')
},
webpackConfig: {
entry: 'next/lib/app.js',
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
use: {
loader: "babel-loader",
options: {
presets: ['@babel/react' ],
plugins: ['@babel/plugin-proposal-class-properties']
}
}
}
]
}
}
};