Next.js Discord

Discord Forum

<Head /> component

Unanswered
Cape lion posted this in #help-forum
Open in Discord
Cape lionOP
im trying to use the head component from next/head. when i check the console i dont see the meta tag

2 Replies

put it in metadata
export const metadata: Metadata = {
  ...
  other: {
    test: "test1"
  }
}
Cape lionOP
ty bro