Update drizzle-kit dependency to version 0.20.16

This commit is contained in:
Sean Morley
2024-04-20 00:16:26 +00:00
parent ce2ea2f36f
commit da8b4c342d
3 changed files with 41 additions and 16 deletions

View File

@@ -1,5 +1,8 @@
import type { LayoutServerLoad, PageServerLoad } from "./$types";
import { USING_VERCEL } from "$env/static/private";
let USING_VERCEL: string;
try {
USING_VERCEL = require("$env/static/private").USING_VERCEL;
} catch (error) {}
export const load: LayoutServerLoad = async (event) => {
if (event.locals.user) {