渲染路由模块 MetaFunction 导出创建的所有 <meta> 标签。你应该将其渲染在 HTML 的 <head> 标签内。
<meta>
<head>
import { Meta } from "react-router";export default function Root() { return ( <html> <head> <Meta /> </head> </html> );} Copy
import { Meta } from "react-router";export default function Root() { return ( <html> <head> <Meta /> </head> </html> );}
渲染路由模块 MetaFunction 导出创建的所有
<meta>
标签。你应该将其渲染在 HTML 的<head>
标签内。