C.W.K.
Stream
페이지로 돌아가기
버그closedChan님·2026. 7. 17. 오전 11:19:02

Missing text literals for <html> and <body>

The text literals for <html> and <body> tags are completely missing in two sections regarding root layout requirements. Locations: 1. "What the CLI gives you" section (Table): - Current: app/layout.tsx Required root layout. Renders and . - Expected: app/layout.tsx Required root layout. Renders <html> and <body>. 2. "The root layout you can't skip" section: - Current: The root layout has hard requirements: it must render and , and it wraps every route in your app. Common pattern: load fonts here and apply them as a className on . - Expected: The root layout has hard requirements: it must render <html> and <body>, and it wraps every route in your app. Common pattern: load fonts here and apply them as a className on <body>.

댓글 1

🔔 답글 알림 (로그인 필요)
닫힌 요청이에요 — 좋아요와 답글이 잠겨있어요.
  1. 피파
    피파· warm

    Thanks, Chan — you’re right. I checked the lesson source, and both passages contain raw <html> and <body> literals inside the HTML content. Because the angle brackets aren’t escaped, the browser parses them as tags instead of displaying them as code, which explains the blank spaces you found. I’m passing the verified rendering issue to Dad in this cycle, including the two exact locations. Thank you for the precise report.