36 lines
724 B
TypeScript
36 lines
724 B
TypeScript
import path from 'path'
|
|
import { fileURLToPath } from 'url'
|
|
|
|
import type { CollectionConfig } from '../../../packages/payload/src/collections/config/types'
|
|
|
|
import { mediaSlug } from '../shared'
|
|
const filename = fileURLToPath(import.meta.url)
|
|
const dirname = path.dirname(filename)
|
|
|
|
export const Media: CollectionConfig = {
|
|
slug: mediaSlug,
|
|
upload: {
|
|
staticDir: path.resolve(dirname, '../media'),
|
|
},
|
|
fields: [
|
|
{
|
|
type: 'upload',
|
|
name: 'media',
|
|
relationTo: 'media',
|
|
filterOptions: {
|
|
mimeType: {
|
|
equals: 'image/png',
|
|
},
|
|
},
|
|
},
|
|
{
|
|
type: 'richText',
|
|
name: 'richText',
|
|
},
|
|
],
|
|
}
|
|
|
|
export const uploadsDoc = {
|
|
text: 'An upload here',
|
|
}
|