File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
packages/runtime/src/templates/edge-shared Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change 1
1
import type { EdgeFunction } from 'https://edge.netlify.com'
2
2
3
+ // These are copied from next/dist/build. This file gets copied as part of the next
4
+ // runtime build and can't reference the next package directly.
5
+ //
6
+ // Latest types at https://github.com/vercel/next.js/blob/4a2df3c3752aeddc50fd5ab053440eccf71ae50b/packages/next/src/build/index.ts#L140
3
7
export declare type SsgRoute = {
4
8
initialRevalidateSeconds : number | false
5
9
srcRoute : string | null
6
- dataRoute : string
10
+ dataRoute : string | null
7
11
}
8
12
export declare type DynamicSsgRoute = {
9
13
routeRegex : string
10
14
fallback : string | null | false
11
- dataRoute : string
15
+ dataRoute : string | null
12
16
dataRouteRegex : string
13
17
}
14
18
export declare type PrerenderManifest = {
You can’t perform that action at this time.
0 commit comments