ohmyform-ui/next.config.type.ts
2022-01-03 00:39:47 +01:00

12 lines
207 B
TypeScript

export interface NextConfigType {
publicRuntimeConfig: {
environment: string,
endpoint: string
spa?: boolean
mainBackground?: string
}
serverRuntimeConfig: {
endpoint: string
}
}