You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
457 B
13 lines
457 B
export type BuildManifest = {
|
|
devFiles: readonly string[];
|
|
ampDevFiles: readonly string[];
|
|
polyfillFiles: readonly string[];
|
|
lowPriorityFiles: readonly string[];
|
|
rootMainFiles: readonly string[];
|
|
pages: {
|
|
'/_app': readonly string[];
|
|
[page: string]: readonly string[];
|
|
};
|
|
ampFirstPages: readonly string[];
|
|
};
|
|
export declare function getPageFiles(buildManifest: BuildManifest, page: string): readonly string[];
|
|
|