add docker

This commit is contained in:
Fabrice Lamant
2025-12-06 14:55:13 +01:00
parent 3015fc2e78
commit fef4690b0b
24 changed files with 1186 additions and 446 deletions

View File

@@ -1,5 +1,5 @@
export const loadSchedule = async () => {
const response = await fetch('/data/calendar.json');
const response = await fetch('/api/data/calendar.json');
const data = await response.json();
return data;
};