7 lines
185 B
TypeScript
7 lines
185 B
TypeScript
import type { Tenant } from '../payload-types.js'
|
|
|
|
export const tenant2: Omit<Tenant, 'createdAt' | 'id' | 'updatedAt'> = {
|
|
title: 'Tenant 2',
|
|
clientURL: 'http://localhost:3001',
|
|
}
|