<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> ); }