๐Ÿ“ฆ payloadcms / plugin-template

๐Ÿ“„ newCollection.ts ยท 17 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17import { CollectionConfig } from 'payload/types';

const newCollection: CollectionConfig = {
  slug: 'new-collection',
  admin: {
    useAsTitle: 'title',
  },
  fields: [
    {
      name: 'title',
      type: 'text',
    },
  ],
}

export default newCollection;