mirror of
https://github.com/d0zingcat/nextjs-notion-starter-kit.git
synced 2026-05-13 23:16:47 +00:00
8 lines
232 B
TypeScript
8 lines
232 B
TypeScript
import { getSiteForDomain } from './get-site-for-domain'
|
|
import * as config from './env'
|
|
import * as types from './types'
|
|
|
|
export async function getSites(): Promise<types.Site[]> {
|
|
return [await getSiteForDomain(config.domain)]
|
|
}
|