在用vue来写一官网的时候,想引入外部字体文件,毕竟总感受他本身的字体有点难看,在这里记录下
@font-face { font-family: "华文行楷"; src: url('stxingka.ttf'); font-weight: normal; font-style: normal; }
<style lang="less" rel="stylesheet/less"> @import "./common/font/font.css"; </style>
module: { rules: [ { test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/, loader: 'url-loader', options: { limit: 10000, name: utils.assetsPath('fonts/[name].[hash:7].[ext]') } } ] }
正在努力学习中,若对你的学习有帮助,留下你的印记呗(点个赞咯^_^)
往期好文推荐:css
来源:https://segmentfault.com/a/1190000017397287vue