Same as before

This commit is contained in:
Alessio Davoli 2023-12-22 12:38:49 +01:00
parent eb69f00c26
commit eac85ec934

View file

@ -2,6 +2,10 @@ export const prerender = false;
export const ssr = true;
export const csr = true;
/**
* This is a global configuration for using sveltekit
* custom 'fetch' function that enables a lot of things
*/
export async function load({ fetch }) {
window.fetch = fetch;
}