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
You're repeating yourself quite a bit on each page to ensure they all have the right fonts, favicon etc in the <head>. Next lets you customise the "surrounding HTML" (i.e. the bit outside of the main React app) by creating a pages/_document.js(just like your pages/_app.js).
You can put the stuff that's shared across all pages in here, and reserve <Head> usage for things unique to each page (like the title)
week6-EMJA/pages/buy.js
Lines 10 to 21 in 9faafaa
You're repeating yourself quite a bit on each page to ensure they all have the right fonts, favicon etc in the
<head>
. Next lets you customise the "surrounding HTML" (i.e. the bit outside of the main React app) by creating apages/_document.js
(just like yourpages/_app.js
).You can put the stuff that's shared across all pages in here, and reserve
<Head>
usage for things unique to each page (like the title)https://nextjs.org/docs/advanced-features/custom-document
The text was updated successfully, but these errors were encountered: