Update +layout.server.ts

This commit is contained in:
luke-hagar-sp
2022-12-17 21:51:48 -06:00
parent bbef870e1f
commit 126af53c9c

View File

@@ -1,5 +1,5 @@
import type { PageServerLoad } from './$types';
export const load: PageServerLoad = () => {
return { env: import.meta.env };
return { env: import.meta.env, analyticsId: process.env.VERCEL_ANALYTICS_ID };
};