我将谷歌字体“Raleway”添加到我的 Nextjs 应用程序中。运行 npm build 后,字体在我的本地服务器中发生了变化,但在实时环境中没有显示。
请多多指教。
请帮忙
import { Html, Head, Main, NextScript } from 'next/document';
export default function Document() {
return (
<Html>
<Head>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link
rel="preconnect"
href="https://fonts.gstatic.com"
crossOrigin="true"
/>
<link
href="https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400&family=Roboto:wght@100;300;400;500;700;900&display=swap"
rel="stylesheet"
/>
</Head>
<body>
<Main />
<NextScript />
</body>
</Html>
);
}
Css
html,
body {
font-family: 'Raleway', sans-serif;
}
当您不使用互联网时,Google 字体有时不会改变。