<Meta />
這個元件會渲染由您的路由模組 meta 輸出所建立的所有 <meta> 標籤。您應該將它渲染在 HTML 的 <head> 之中,通常是在 app/root.tsx 中。
meta
<meta>
<head>
app/root.tsx
import { Meta } from "@remix-run/react"; export default function Root() { return ( <html> <head> <Meta /> </head> <body></body> </html> ); }