Gatsby MDX无法导航,名称中包含目录



创建的段塞包含根目录,因此将段塞传递给<Link to={slug}>是中断的。页面已经创建,但链接到它们的插件不必要地包含包含文件夹,无论是帖子还是页面。

可导航页面包括:

localhost:8000/test-mdx-1/
localhost:8000/posts/test-mdx-2/
localhost:8000/test-mdx-3/

文件位置为:

./src/posts/test-mdx-1.mdx
./src/pages/posts/test-mdx-2.mdx
./src/pages/test-mdx-3.mdx

**问题-创建的蛞蝓**

slug: "posts/test-mdx-1/"
slug: "pages/posts/test-mdx-2/"
slug: "pages/test-mdx-3/"

**期望结果**

slug: "test-mdx-1/"
slug: "posts/test-mdx-2/"
slug: "test-mdx-3/"

使用插件:

{
resolve: 'gatsby-plugin-mdx',
options: {
extensions: [`.mdx`],
gatsbyRemarkPlugins: [
{
resolve: 'gatsby-remark-images',
options: { maxWidth: 600 },
},
{
resolve: `gatsby-remark-responsive-iframe`,
options: {
wrapperStyle: `margin-bottom: 1.0725rem`,
},
},
],
},
},
// ** as per tutorial
{
resolve: 'gatsby-source-filesystem',
options: {
name: `pages`,
path: `${__dirname}/src/pages`,
},
},
{
resolve: 'gatsby-source-filesystem',
options: {
name: `posts`,
path: `${__dirname}/src/posts`,
},
},
// ** Create mdx pages outside of ./src/pages directory
{
resolve: 'gatsby-plugin-page-creator',
options: {
path: `${__dirname}/src/posts`,
},
},

排序-只需要1个盖茨比源文件系统,已将所有.mdx文件移到/src/posts

gatsby-config.js

...
{
resolve: 'gatsby-plugin-mdx',
options: {
extensions: [`.mdx`],
gatsbyRemarkPlugins: [
{
resolve: 'gatsby-remark-images',
options: { maxWidth: 600 },
},
{
resolve: `gatsby-remark-responsive-iframe`,
options: {
wrapperStyle: `margin-bottom: 1.0725rem`,
},
},
],
},
},
{
resolve: 'gatsby-source-filesystem',
options: {
name: `posts`,
path: `${__dirname}/src/posts`,
},
},
// ** Create mdx pages outside of ./src/pages directory
{
resolve: 'gatsby-plugin-page-creator',
options: {
path: `${__dirname}/src/posts`,
},
},
...

相关内容

  • 没有找到相关文章

最新更新