import type { CollectionConfig } from "payload"; import path from "path"; import { fileURLToPath } from "url"; const filename = fileURLToPath(import.meta.url); const dirname = path.dirname(filename); export const Media: CollectionConfig = { slug: "media", admin: { useAsTitle: "filename", defaultColumns: ["filename", "alt", "updatedAt"], }, access: { read: () => true, // Publicly readable }, upload: { staticDir: path.resolve(dirname, "../../../public/media"), adminThumbnail: "thumbnail", imageSizes: [ { name: "thumbnail", width: 400, height: 300, position: "centre", }, { name: "card", width: 768, height: undefined, position: "centre", }, ], }, fields: [ { name: "alt", type: "text", required: true, }, ], };