27 lines
474 B
TypeScript
27 lines
474 B
TypeScript
import { buildConfig } from '../buildConfig';
|
|
|
|
export default buildConfig({
|
|
collections: [
|
|
{
|
|
slug: 'arrays',
|
|
fields: [
|
|
{
|
|
name: 'array',
|
|
type: 'array',
|
|
fields: [
|
|
{
|
|
type: 'text',
|
|
name: 'required',
|
|
required: true,
|
|
},
|
|
{
|
|
type: 'text',
|
|
name: 'optional',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|