Build errors

This commit is contained in:
Jesse Wierzbinski 2024-04-07 03:05:46 -10:00
parent 0c720956a1
commit 885ec12780
No known key found for this signature in database
2 changed files with 2 additions and 4 deletions

View file

@ -4,8 +4,7 @@ import type { MediaBackend } from "media-manager";
import { MediaBackendType } from "media-manager";
import { client } from "~database/datasource";
import { attachmentToAPI, getUrl } from "~database/entities/Attachment";
import { LocalMediaBackend } from "~packages/media-manager/backends/local";
import { S3MediaBackend } from "~packages/media-manager/backends/s3";
import { LocalMediaBackend, S3MediaBackend } from "~packages/media-manager";
export const meta = applyConfig({
allowedMethods: ["GET", "PUT"],

View file

@ -6,8 +6,7 @@ import type { MediaBackend } from "media-manager";
import sharp from "sharp";
import { client } from "~database/datasource";
import { attachmentToAPI, getUrl } from "~database/entities/Attachment";
import { LocalMediaBackend } from "~packages/media-manager/backends/local";
import { S3MediaBackend } from "~packages/media-manager/backends/s3";
import { LocalMediaBackend, S3MediaBackend } from "~packages/media-manager";
export const meta = applyConfig({
allowedMethods: ["POST"],