Revert presigned endpoint to edge runtime

This commit is contained in:
Sam Becker 2023-11-29 20:22:55 -06:00
parent a23aa57e43
commit 460dc4a419

View File

@ -1,6 +1,8 @@
import { auth } from '@/auth'; import { auth } from '@/auth';
import { awsS3GetSignedUploadUrl } from '@/services/blob/aws-s3'; import { awsS3GetSignedUploadUrl } from '@/services/blob/aws-s3';
export const runtime = 'edge';
export async function GET( export async function GET(
_: Request, _: Request,
{ params: { key } }: { params: { key: string } }, { params: { key } }: { params: { key: string } },