1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

unplugin-fontsでViteでGoogleフォントを使えるようにする

Last updated at Posted at 2023-09-08

大したことないメモですが、まだまだViteに関する情報は少なかったので一応書き留めておきます。

使用するプラグイン

導入方法

インストールは公式様の手順通りです。

install
npm i --save-dev unplugin-fonts

使いたいフォント名を以下のように指定します。

vite.config.js
import Unfonts from 'unplugin-fonts/vite'

export default defineConfig({
  plugins: [
    vue(),
    Unfonts({
      google: {
        families: [
          'Noto Sans JP'
        ],
      }
    }),
  ],
})

するとCSSで使えます。

sample.css
font-family: 'Noto Sans JP', sans-serif;

つぶやき

手順をよく見ずになんとなくdependenciesに入れてたんですけど、devDependenciesで良いんですね。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?