You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Change one of the strings in page.tsx. Notice h1 is black again.
Refresh. Notice h1 is orange again.
Expected: The h1 should always be orange (tomato). Actual: The h1 is black on first load after dev server startup and after HMR.
When the h1 is black, it's because all of the CSS is missing. You can even console.log({css}) and see { css: '' } when the CSS disappears, and { css: '.go…' } when it returns.
The text was updated successfully, but these errors were encountered:
Steps to Reproduce
pnpm create next-app --example with-goober with-goober-app
cd with-goober-app
pnpm run dev
h1
is black.h1
is orange.page.tsx
. Noticeh1
is black again.h1
is orange again.Expected: The
h1
should always be orange (tomato).Actual: The
h1
is black on first load after dev server startup and after HMR.When the
h1
is black, it's because all of the CSS is missing. You can evenconsole.log({css})
and see{ css: '' }
when the CSS disappears, and{ css: '.go…' }
when it returns.The text was updated successfully, but these errors were encountered: