(dir: string)
| 1331 | } |
| 1332 | |
| 1333 | export function getPagesManifest(dir: string) { |
| 1334 | const serverFile = path.join(dir, getDistDir(), 'server/pages-manifest.json') |
| 1335 | |
| 1336 | return readJson(serverFile) |
| 1337 | } |
| 1338 | |
| 1339 | export function updatePagesManifest(dir: string, content: any) { |
| 1340 | const serverFile = path.join(dir, getDistDir(), 'server/pages-manifest.json') |
no test coverage detected