add login portal and traefik middleware auth for testing redirect login

This commit is contained in:
Milo Schwartz 2024-10-06 18:08:26 -04:00
parent e731fc52aa
commit 7c8bb45fb0
14 changed files with 285 additions and 130 deletions

View file

@ -76,6 +76,9 @@ app.prepare().then(() => {
`Internal server is running on http://localhost:${internalPort}`,
);
});
internalServer.use(notFoundMiddleware)
internalServer.use(errorHandlerMiddleware);
});
declare global {