1// Environment variables helper 2// In SvelteKit, public env vars must be prefixed with PUBLIC_ 3// We'll fall back to a default for development 4export const PUBLIC_BASE_URL = process.env.PUBLIC_BASE_URL || 'http://localhost:5173';