primera iteracion del front

This commit is contained in:
2026-03-14 14:53:03 -03:00
parent 389f858369
commit 0905005543
19 changed files with 749 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
import { readable } from "svelte/store";
export const url = readable(
typeof window !== "undefined" && window.location.hostname === "localhost"
? "http://localhost:8080"
: "https://fedesrv.ddns.net/short",
);