Код: Выделить всё
public/
├── project1/
| ├── index.html
| ├── script.js
| └── ...
├── project2/
| ├── index.html
| ├── script.js
| └── ...
└── ...
Код: Выделить всё
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
async rewrites() {
return [
{
source: "/project1",
destination: "/project1/index.html",
},
];
},
};
export default nextConfig;
Большинство из этих проектов довольно велики, поэтому я не могу вручную изменить относительный путь всего в Там.
Подробнее здесь: https://stackoverflow.com/questions/794 ... -react-app
Мобильная версия