json 当我在vercel上部署我的项目时,我的NotFound页面没有出现?

i7uaboj4  于 2023-08-08  发布在  其他
关注(0)|答案(1)|浏览(132)

我创建了一个notFound/404页面,一切都在我的本地主机中,但当我部署时,他显示我错误地方404页面。
我在互联网上搜索了一下,发现了这段代码,但是当我把它写在一个名为vercel.json的新文件中时,什么都没有发生:
这是我找到的代码:

{
  "rewrites": [
    {
      "source": "/(.*)", 
      "destination": "./src/pages/NotFound/NotFound.jsx"
    }
  ]
}

字符串
这个问题有什么解决办法吗??
我也试试这个

{
  "routes": [
    { "handle": "filesystem" },
    { "src": "/(.*)", "status": 404, "dest": "./src/pages/NotFound/NotFound.jsx" }
  ]
}


什么都没发生!!

os8fio9y

os8fio9y1#

好吧,答案很简单,我只是删除我添加的内容,从这个:

"destination": "./src/pages/NotFound/NotFound.jsx"

字符串
到这个

"destination": "/"


我认为必须添加路径到我的404页面,但我应该离开的代码,因为它是。

相关问题