mirror of
https://github.com/IT4Change/ohmyform-ui.git
synced 2025-12-12 17:25:51 +00:00
12 lines
207 B
TypeScript
12 lines
207 B
TypeScript
export interface NextConfigType {
|
|
publicRuntimeConfig: {
|
|
environment: string,
|
|
endpoint: string
|
|
spa?: boolean
|
|
mainBackground?: string
|
|
}
|
|
serverRuntimeConfig: {
|
|
endpoint: string
|
|
}
|
|
}
|