This commit is contained in:
Sidharth Vinod
2022-01-19 17:24:10 +05:30
parent cbb354f43e
commit 399b2a338f
4 changed files with 14 additions and 6 deletions
+9
View File
@@ -0,0 +1,9 @@
import type { Handle } from '@sveltejs/kit/types/hooks';
export const handle: Handle = async ({ request, resolve }) => {
const response = await resolve(request, {
ssr: false
});
return response;
};