Fix image path again, again?

This commit is contained in:
2025-09-07 04:03:29 +02:00
parent f1e6a0355d
commit 9d711445ac
+1 -1
View File
@@ -8,7 +8,7 @@ const props = defineProps<{ car: ReturnType<typeof getType> }>();
const details = computed(() => (props.car ? trams.find((t) => t.id === props.car!.id) : undefined));
const baseUrl = import.meta.env.BASE || '/';
const baseUrl = import.meta.env.BASE_URL;
</script>
<template>