Files
psychartherapie-v2/next.config.js
Skydust e583858edb
Some checks failed
A gitea test / Random test (pull_request) Has been cancelled
Cleaned up some code and added a somewhat responsive header burger
2023-09-19 15:13:22 +02:00

16 lines
307 B
JavaScript

module.exports = {
distDir: "build",
async rewrites() {
return [
{
source: "/",
destination: "/home"
},
{
source: "/admin",
destination: "/admin/index.html"
}
];
}
};