๐Ÿ“ฆ payloadcms / payload

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

export const menuSlug = 'menu'

export const MenuGlobal: GlobalConfig = {
  slug: menuSlug,
  versions: {
    drafts: false,
  },
  fields: [
    {
      name: 'globalText',
      type: 'text',
    },
  ],
}