Skip to content

Commit bb09c4d

Browse files
chore: reword in tree-view (#57884)
### What? Minor change to use the word `content` instead of `HTML` in the build output tree-view legend. ### Why? The `○` symbol is also used for statically pre-rendered Route Handlers, which might not return HTML, so just clarifying the wording. [Slack thread](https://vercel.slack.com/archives/C03KAR5DCKC/p1698844583794019)
1 parent b0509ed commit bb09c4d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

packages/next/src/build/utils.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -680,7 +680,11 @@ export async function printTreeView(
680680
print(
681681
textTable(
682682
[
683-
usedSymbols.has('○') && ['○', '(Static)', 'prerendered as static HTML'],
683+
usedSymbols.has('○') && [
684+
'○',
685+
'(Static)',
686+
'prerendered as static content',
687+
],
684688
usedSymbols.has('●') && [
685689
'●',
686690
'(SSG)',

0 commit comments

Comments
 (0)