fix: PUBLIC_URL usage and add ffmpeg

This commit is contained in:
Valknar XXX
2025-10-25 22:37:25 +02:00
parent bcc9ba1c6d
commit 29e8808be1
3 changed files with 6 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
<script lang="ts">
import { _ } from "svelte-i18n";
import { PUBLIC_URL || http://localhost:3000 } from "$env/static/public";
import { PUBLIC_URL } from "$env/static/public";
interface Props {
title: string;
@@ -11,7 +11,7 @@ interface Props {
let {
title,
description,
image = `${PUBLIC_URL || http://localhost:3000}/img/kamasutra.jpg`,
image = `${PUBLIC_URL || "http://localhost:3000"}/img/kamasutra.jpg`,
}: Props = $props();
</script>