We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e3a009 commit 54ddb8cCopy full SHA for 54ddb8c
.gitignore
@@ -27,3 +27,4 @@ pnpm-debug.log*
27
astro_tmp_pages_*
28
29
*.swp
30
+bun.lock
src/components/home/Schedule.astro
@@ -26,7 +26,7 @@ const t = getLocale(Astro.url);
26
// Fetch schedule data dynamically from the API endpoint
let scheduleData: ScheduleData;
try {
- const response = await fetch(`${Astro.site?.origin || 'http://localhost:4321'}/2025/schedule.json`);
+ const response = await fetch('https://sitcon.camp/2025/schedule.json');
if (!response.ok) {
31
throw new Error(`Failed to fetch schedule: ${response.status}`);
32
}
0 commit comments