fix: correction des refresh des protected routes [#36]

This commit is contained in:
Luc SORIGNET
2025-04-07 17:44:51 +02:00
parent 5a7661db93
commit 839a26257b
7 changed files with 6705 additions and 1558 deletions

13
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,13 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Next.js: debug client-side",
"type": "chrome",
"request": "launch",
"webRoot": "${workspaceFolder}/Front-End/",
"url": "http://localhost:3000",
},
]
}

13
.vscode/tasks.json vendored Normal file
View File

@ -0,0 +1,13 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "dev",
"path": "Front-End",
"problemMatcher": [],
"label": "npm: dev - Front-End",
"detail": "next dev"
}
]
}