我有几条具有这样的文件夹结构的动态路由:
c
-> [category.js] (file)
-> [category.js] (dir)
----> [item].js (file)
----> [item].js (dir)
-------> [review].js (file)
这在开发中效果很好,我可以联系/c/category, /c/[category]/[item], and /c/[category]/[item]/[review]
我向package.json添加了一个脚本:"export": "next build && next export"
运行下一个导出,然后将“ out”文件夹上载到Firebase Hosting,我可以访问主页和静态路由,但是一旦尝试转到任何动态站点,就会出现404错误。知道这可能是什么吗?