14 lines
215 B
TypeScript
14 lines
215 B
TypeScript
import type { GlobalConfig } from 'payload'
|
|
|
|
export const menuSlug = 'menu'
|
|
|
|
export const MenuGlobal: GlobalConfig = {
|
|
slug: menuSlug,
|
|
fields: [
|
|
{
|
|
name: 'globalText',
|
|
type: 'text',
|
|
},
|
|
],
|
|
}
|