Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 1m19s
Build & Deploy / 🧪 QA (push) Failing after 3m32s
Build & Deploy / 🚀 Deploy (push) Has been skipped
Build & Deploy / 🏗️ Build (push) Failing after 7m51s
Build & Deploy / ⚡ Lighthouse (push) Has been skipped
Build & Deploy / 🧪 Smoke Test (push) Has been skipped
Build & Deploy / ♿ WCAG (push) Has been skipped
Build & Deploy / 🛡️ Quality Gates (push) Has been skipped
Build & Deploy / 🔔 Notify (push) Successful in 10s
49 lines
943 B
TypeScript
49 lines
943 B
TypeScript
import type { CollectionConfig } from 'payload';
|
|
|
|
export const Media: CollectionConfig = {
|
|
slug: 'media',
|
|
access: {
|
|
read: () => true,
|
|
},
|
|
admin: {
|
|
useAsTitle: 'filename',
|
|
defaultColumns: ['filename', 'alt', 'updatedAt'],
|
|
},
|
|
upload: {
|
|
staticDir: 'public/media',
|
|
adminThumbnail: 'thumbnail',
|
|
imageSizes: [
|
|
{
|
|
name: 'thumbnail',
|
|
width: 600,
|
|
// height: undefined allows wide 5:1 aspect ratios to be preserved without cropping
|
|
height: undefined,
|
|
position: 'centre',
|
|
},
|
|
{
|
|
name: 'card',
|
|
width: 768,
|
|
height: undefined,
|
|
position: 'centre',
|
|
},
|
|
{
|
|
name: 'tablet',
|
|
width: 1024,
|
|
height: undefined,
|
|
position: 'centre',
|
|
},
|
|
],
|
|
},
|
|
fields: [
|
|
{
|
|
name: 'alt',
|
|
type: 'text',
|
|
required: true,
|
|
},
|
|
{
|
|
name: 'caption',
|
|
type: 'text',
|
|
},
|
|
],
|
|
};
|