Hexo-nexT博客搭建-Hexo优化-vercel配置404 发表于 2022-08-15 更新于 2024-08-18 本文字数: 372 阅读时长 ≈ 1 分钟 Hexo-nexT博客搭建 推荐先阅读:【2022教程全】Hexo博客 + nexT主题 如果不配置会出现以下情况: 在Hexo项目下单public文件夹下创建vercel.json文件,内容如下 { "version": 2, "routes": [ { "handle": "filesystem" }, { "src": "/(.*)", "status": 404, "dest": "/404.html" } ]} 最后在public文件夹下丢个404.html页面 然后一键3连,刷新配置: hexo clean && hexo g && hexo s