在用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