创建的 Slugs 包含根目录,因此传递 slug 到<Link to={slug}>
被破坏。页面已创建,但链接到它们的 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 **
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`,
},
},