12 lines
304 B
TypeScript
12 lines
304 B
TypeScript
import { option } from '@typebot.io/forge'
|
|
import { defaultBaseUrl } from './constants'
|
|
|
|
export const baseOptions = option.object({
|
|
baseUrl: option.string.layout({
|
|
label: 'Base origin',
|
|
placeholder: 'https://cal.com',
|
|
defaultValue: defaultBaseUrl,
|
|
accordion: 'Customize host',
|
|
}),
|
|
})
|