-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathconfig.ts
46 lines (37 loc) · 1.57 KB
/
config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import { existsSync } from 'node:fs'
import { readFile } from 'node:fs/promises'
import { join, resolve } from 'node:path'
import type { NextConfigComplete } from 'next/dist/server/config-shared.js'
import { PLUGIN_DIR, RUN_CONFIG } from './constants.js'
/**
* Get Next.js config from the build output
*/
export const getRunConfig = async () => {
return JSON.parse(await readFile(resolve(PLUGIN_DIR, RUN_CONFIG), 'utf-8'))
}
/**
* Configure the custom cache handler at request time
*/
export const setRunConfig = (config: NextConfigComplete) => {
const cacheHandler = join(PLUGIN_DIR, '.netlify/dist/run/handlers/cache.cjs')
if (!existsSync(cacheHandler)) {
throw new Error(`Cache handler not found at ${cacheHandler}`)
}
// set the path to the cache handler
config.experimental = {
...config.experimental,
// @ts-expect-error incrementalCacheHandlerPath was removed from config type
// but we still need to set it for older Next.js versions
incrementalCacheHandlerPath: cacheHandler,
}
// Next.js 14.1.0 moved the cache handler from experimental to stable
// https://github.com/vercel/next.js/pull/57953/files#diff-c49c4767e6ed8627e6e1b8f96b141ee13246153f5e9142e1da03450c8e81e96fL311
config.cacheHandler = cacheHandler
config.cacheMaxMemorySize = 0
// set config
process.env.__NEXT_PRIVATE_STANDALONE_CONFIG = JSON.stringify(config)
}
export type TagsManifest = Record<string, string>
export const getTagsManifest = async (): Promise<TagsManifest> => {
return JSON.parse(await readFile(resolve(PLUGIN_DIR, '.netlify/tags-manifest.json'), 'utf-8'))
}