this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 10 lines 218 B view raw
1"use server"; 2 3import { put } from "@vercel/blob"; 4 5export async function uploadImage(file: File) { 6 return put(Math.random().toString(36).substring(2), file, { 7 access: "public", 8 allowOverwrite: true, 9 }); 10}