feat: implement backend server with SQLite logging and target validation middleware
Deploy Backendia / deploy (push) Successful in 40s

This commit is contained in:
streaper2
2026-08-26 09:01:25 +02:00
parent 9a429d476d
commit 6e09ea25dd
+1 -1
View File
@@ -835,7 +835,7 @@ async function startServer() {
try {
await nextApp.prepare();
const handle = nextApp.getRequestHandler();
app.all('*', (req, res) => handle(req, res));
app.use((req, res) => handle(req, res));
console.log("Dashboard Next.js initialisé avec succès.");
} catch (err) {
console.error("Erreur d'initialisation du Dashboard Next.js:", err);