removed all environment varibales because shid not work
All checks were successful
Rebuild signaller for deprived.dev to rebuild site / test_service (push) Successful in 12s

This commit is contained in:
BOTAlex 2025-10-03 15:21:55 +02:00
parent 7a21f70144
commit 5702ea1ea7
3 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,4 @@
import { PUBLIC_URL_BASE } from "$env/static/public";
const PUBLIC_URL_BASE = "https://deprived.dev/";
// Absolute vibe coded. Idk if it works or not. Not important anyways
// Assumes PUBLIC_URL_BASE is something like "https://deprived.dev"

View file

@ -1,6 +1,6 @@
import PocketBase from "pocketbase";
import { parseProfile, type Profile } from "./Profile";
import { PUBLIC_POCKET_URL } from "$env/static/public";
const PUBLIC_POCKET_URL = "https://pocket.deprived.dev/";
let pb = new PocketBase(PUBLIC_POCKET_URL);

View file

@ -3,7 +3,7 @@
import PocketBase from "pocketbase";
import ShopItem from "./classes/ShopItem";
import { PUBLIC_POCKET_URL } from "$env/static/public";
const PUBLIC_POCKET_URL = "https://pocket.deprived.dev/";
export let pb = new PocketBase(PUBLIC_POCKET_URL);