We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06bc4f3 commit f471107Copy full SHA for f471107
src/helpers/cache.ts
@@ -11,7 +11,7 @@ export const buildCacheValue = (path: string, ext: string) => {
11
12
switch (true) {
13
case isRoute:
14
- return buileRouteCacheValue(path)
+ return buildRouteCacheValue(path)
15
case isPage:
16
return buildPageCacheValue(path, false)
17
case isApp:
@@ -55,7 +55,7 @@ const buildFetchCacheValue = async (path: string) => {
55
}
56
57
58
-const buileRouteCacheValue = async (path: string) => {
+const buildRouteCacheValue = async (path: string) => {
59
try {
60
const data = await readFile(`${BUILD_DIR}/.next/${path}.body`, 'utf8')
61
const meta = await JSON.parse(await readFile(`${BUILD_DIR}/.next/${path}.meta`, 'utf8'))
0 commit comments