-
BLOG
知る。残す。伝える。
※Google fontsはMontserratを例にしています
export default defineNuxtConfig({
app: {
head: {
link: [
{
rel: 'preconnect',
href: 'https://fonts.googleapis.com'
},
{
rel: 'stylesheet',
href: 'https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap',
crossorigin: ''
},
],
script: [
{
src: 'https://use.typekit.net/{プロジェクトID}.js',
},
],
},
},
})
<script>
export default {
mounted() {
try {
Typekit.load({ async: true });
} catch (e) {
console.log(e);
}
}
}
</script>
あとはCSSでfont-familyを指定する
もう4月ですか?
© Copyright 2020 NIAR All rights reserved.