update with nuxt4 for docker-web
All checks were successful
Deploy App / deploy (push) Successful in 4m5s

This commit is contained in:
valere
2025-08-29 16:08:08 +02:00
parent 2db113a0c5
commit f0e2aa237a
65 changed files with 10747 additions and 22132 deletions

7
app/types/todo.d.ts vendored Normal file
View File

@@ -0,0 +1,7 @@
export default interface Todo {
id: string
content: string
isDone: boolean
createdAt: date
updatedAt: date
}