/** * © 2022 WavePlay */ import type { DataMap, Redirect, Rewrite } from '../_internal/types' import type { Config } from '../client/types' export interface BuildManifest { config?: Config dev?: { localUrl?: string | null tunnelUrl?: string | null } env?: DataMap locales?: { [key: string]: string[] } pages?: { [key: string]: { getPropsType: 'getServerSideProps' | 'getStaticProps' | null } } redirects?: Redirect[] rewrites?: Rewrite[] }