From 29646d14ae02ee4969f524f90feb98ac475a430f Mon Sep 17 00:00:00 2001 From: Max Richter Date: Mon, 13 Nov 2023 02:57:36 +0100 Subject: [PATCH] fix: some shit --- src/routes/api/ai/image/[name]/+server.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/api/ai/image/[name]/+server.ts b/src/routes/api/ai/image/[name]/+server.ts index 5c94444..c2aa68d 100644 --- a/src/routes/api/ai/image/[name]/+server.ts +++ b/src/routes/api/ai/image/[name]/+server.ts @@ -1,5 +1,5 @@ import { json } from "@sveltejs/kit"; -import * as Jimp from "jimp"; +import Jimp from "jimp"; import type { RequestHandler } from "./$types"; import { putObject } from "$lib/helpers/minio"; import { generateImage } from "$lib/helpers/stability";