gpt4 book ai didi

css - 如何在 Svelte 中将 node_modules 中的 css 添加到 template.html

转载 作者:行者123 更新时间:2023-11-28 10:09:17 27 4
gpt4 key购买 nike

我有一个 sapperjs 应用程序,就像您通过调用 npx degit sveltejs/sapper-template my-app 获得的应用程序一样。我想添加一种字体。普通人可能会在 app/template.html 中添加这样一行:

<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Roboto+Slab">

网络原因使这不切实际,所以我想在本地托管字体。在 create-react-app 中,我会在 App.jsx 或等效组件的顶部简单地 import 'typeface-roboto-slab' 。我怎样才能在我的 sapper/svelte 应用程序中实现类似的效果?

我认为最好将它添加到 app/template.html,因为在其他任何地方,css 都将限定在单个组件中。这似乎是几乎所有应用程序都需要的东西,但在我能找到的文档中却一无所获。

最佳答案

它不像 CRA 那样精简(还!),但您可以通过将字体复制到您的 assets 中来相当简单地实现这一点。文件夹...

npm i typeface-roboto-slab
cp -r node_modules/typeface-roboto-slab assets

...然后添加 <link>在你的app/template.html :

<link rel="stylesheet" href="typeface-roboto-slab/index.css">

在 0.19 版本中,Sapper 获得了直接导入 CSS 文件的能力,但它目前不知道如何处理像 url('./files/roboto-slab-latin-100.woff2') 这样的引用文件。 .这将在未来的版本中得到支持,然后您将能够像在 CRA 中一样使用字体。

关于css - 如何在 Svelte 中将 node_modules 中的 css 添加到 template.html,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52129277/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com