javascript next.config.js中的导出路径Map在NextJS中设置动态路由

yjghlzjz  于 2023-02-28  发布在  Java
关注(0)|答案(1)|浏览(177)

我尝试使用nex.config.js中的Exportpathmap()设置动态路由。静态路由工作正常,但当我尝试动态应用时,动态URL不工作,并将我重定向到主URL。
请帮我解决这个问题。提前谢谢。
下面是我的下一个. config.js

return{
    reactStrictMode: true,
    env: env,
    trailingSlash : true,
    eslint: {
        ignoreDuringBuilds: true,
    },
    swcMinify: true,
    images: {
        domains: ['cdn.pixabay.com', 'pixabay.com', 'cdn.landrrapp.io'],
        loader: 'akamai',
        path: '',
    },
    exportPathMap: async function (
        defaultPathMap,
        { dev, dir, outDir, distDir, buildId }
      ) {
        return {
          '/404': { page: '/404' },
          '/forgot-password': { page: '/forgot-password' },
          '/login': { page: '/login' },
          '/editor/[id]': { page: '/editor/[id]' },
        }
      },
}

我在使用此文件夹“/editor/[id]”时遇到问题:{页面:“/编辑器/[ID]”},
NEXT JS: Build exportPathMap for a dynamic page Route以上是lokks罚款,但我无法理解“

import { PAGE_ROUTES } from '../constants/config';

“此文件数据。

iibxawm4

iibxawm41#

用这个

'/editor/Some Page Name': { page: '/editor/[id]' },
    '/editor/Some Page Name 2': { page: '/editor/[id]' },
    .
    .
    .

相关问题