Refine mobile layout and PWA paths

This commit is contained in:
2026-04-26 17:11:39 +02:00
parent 0864a28593
commit 41a5472582
5 changed files with 384 additions and 70 deletions

View File

@@ -1,5 +1,5 @@
export async function loadManagedStations(): Promise<unknown[]> {
const response = await fetch('/stations.json');
const response = await fetch(`${import.meta.env.BASE_URL}stations.json`);
if (!response.ok) {
throw new Error(`Failed to load managed stations: ${response.status}`);