Google 字体可以在本地主机上工作,但不能在实时服务器上工作

问题描述 投票:0回答:1

我将谷歌字体“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;
 }
reactjs next.js google-font-api
1个回答
0
投票

当您不使用互联网时,Google 字体有时不会改变。

© www.soinside.com 2019 - 2024. All rights reserved.