我已经用React.js和webpack建立了一个网站。
我想在网页中使用Google字体,因此将链接放在该部分中。
Google字体
<link href="https://fonts.googleapis.com/css?family=Bungee+Inline" rel="stylesheet">
并设置CSS
body{
font-family: 'Bungee Inline', cursive;
}
但是,它不起作用。
我怎么解决这个问题?
{ test: /(\.css$)/, loaders: ['style-loader', 'css-loader', 'postcss-loader'] }, { test: /\.(png|woff|woff2|eot|ttf|svg)$/, loader: 'url-loader?limit=100000' }
<link>
放到页面标题中,而不是放到您的React应用中,对吗?您font-family
是在样式表中还是在元素上直接指定其他位置?