Remove PUBLIC_BASE_URL for now

This commit is contained in:
Kevin Kandlbinder 2024-12-27 20:53:20 +00:00
parent a21ee63baa
commit 8daffd6fc1

View file

@ -1,6 +1,7 @@
import { PUBLIC_BASE_URL } from '$env/static/public';
//import { PUBLIC_BASE_URL } from '$env/static/public';
export const baseUrl = PUBLIC_BASE_URL || 'https://pupraider.net';
// TODO: FIXME
export const baseUrl = /*PUBLIC_BASE_URL ||*/ 'https://pupraider.net';
export const makeCanonicalUrl = (path: string) => {
if (!path.startsWith('/')) path = '/' + path;