17 lines
271 B
TypeScript
17 lines
271 B
TypeScript
import type { CollectionConfig } from 'payload'
|
|
|
|
export const Media: CollectionConfig = {
|
|
slug: 'media',
|
|
admin: {
|
|
useAsTitle: 'filename',
|
|
},
|
|
upload: true,
|
|
fields: [
|
|
{
|
|
name: 'alt',
|
|
type: 'text',
|
|
label: 'Texte alternatif',
|
|
},
|
|
],
|
|
}
|