File size: 257 Bytes
b83a268
116a27a
 
 
 
 
 
90de400
116a27a
1
2
3
4
5
6
7
8
9
10
import { env } from '$env/dynamic/public';

interface Settings {
	transportServerUrl: string;
}

export const settings: Settings = $state({
	transportServerUrl: env.PUBLIC_TRANSPORT_SERVER_URL ?? 'https://blanchon-robothub-transportserver.hf.space/api'
});