13 lines
226 B
TypeScript
13 lines
226 B
TypeScript
|
|
import type { AllowList } from 'payload'
|
||
|
|
|
||
|
|
export const eversoloPasteURLAllowList: AllowList = [
|
||
|
|
{
|
||
|
|
hostname: 'www.eversolo.com',
|
||
|
|
protocol: 'https',
|
||
|
|
},
|
||
|
|
{
|
||
|
|
hostname: 'eversolo.com',
|
||
|
|
protocol: 'https',
|
||
|
|
},
|
||
|
|
]
|