Skip to content

Commit 0121db4

Browse files
committed
Shorten keys to save bytes
1 parent 6f68cde commit 0121db4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/next/src/server/app-render/app-render.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ interface ParseRequestHeadersOptions {
171171
readonly isRoutePPREnabled: boolean
172172
}
173173

174-
const flightDataPathHeadKey = 'flight-data-path-head'
174+
const flightDataPathHeadKey = 'h'
175175

176176
interface ParsedRequestHeaders {
177177
/**

packages/next/src/server/app-render/create-component-tree.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ function errorMissingDefaultExport(pagePath: string, convention: string) {
5454
)
5555
}
5656

57-
const cacheNodeKey = 'cache-node'
57+
const cacheNodeKey = 'c'
5858

5959
async function createComponentTreeInternal({
6060
createSegmentPath,

0 commit comments

Comments
 (0)