在main.scss
中,我从assets/styles/fonts
文件夹加载本地字体:
@font-face {
font-family: 'Opensans-Bold';
font-style: normal;
src: local('Opensans-Bold'), url(./fonts/OpenSans-Bold.ttf) format('truetype');
}
@font-face {
font-family: 'Opensans-Light';
font-style: normal;
src: local('Opensans-Light'), url(./fonts/OpenSans-Light.ttf) format('truetype');
}
字符串
然后在vite.config
中加载main.scss
:
css: {
preprocessorOptions: {
scss: {
additionalData: `@import "@/assets/styles/main.scss";`
}
}
},
型
但所有的css从main.scss
是除了字体应用,我得到错误:
downloadable font: download failed (font-family: "Opensans-Bold" style:normal weight:400 stretch:100 src index:1): status=2152398850 source: http://localhost:3000/fonts/OpenSans-Bold.ttf
型
我是在正确的轨道上还是我需要一些其他的方法(与Vue-CLI类似的工作)?
2条答案
按热度按时间dwthyt8l1#
这是正确的方法,解决方案是相对路径,所以:
字符串
并在
vite.config.js
中设置别名:型
unguejic2#
我能够通过简单地将字体放在根目录下的公共文件夹中来实现这一点。
比如:
字符串