+page.server.ts 173 Bytes
Newer Older
Timothy J. Baek's avatar
Timothy J. Baek committed
1
2
import type { PageServerLoad } from './$types';

AJ ONeal's avatar
AJ ONeal committed
3
4
export const load: PageServerLoad = () => {
	const API_ENDPOINT = process.env.API_ENDPOINT;
Timothy J. Baek's avatar
Timothy J. Baek committed
5
	return {
AJ ONeal's avatar
AJ ONeal committed
6
		API_ENDPOINT
Timothy J. Baek's avatar
Timothy J. Baek committed
7
8
	};
};