Should I use <Head> from next/head and use it inside _app.js or should I use <Head> from next/document and use it in _document.js?
I'm kind of confused about when should I choose what. From what I understand _document.js is only rendered on the server-side and _app.js is rendered on both client-side and server-side.
Things I've learnt so far:
- Viewport meta tags should not be used in _document.js's
<title>should not be used in _document.js's
Does that mean I can just put everything <Head> related inside _app.js and be done with it? Or does it give any advantage to put all the other tags(except title and viewport) in _document.js?
