You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
exports.MY_CLIENT_RULES = [
// use this to import your own rules for Client webpack config.
{ test: /\.woff(2)?(\?v=[0-9]\.[0-9]\.[0-9])?$/, loader: "url-loader?limit=10000&mimetype=application/font-woff" },
{ test: /\.(ttf|eot|svg)(\?v=[0-9]\.[0-9]\.[0-9])?$/, loader: "file-loader" }
]
Into my styles.scss I've added this import:
@import "font-awesome/scss/font-awesome.scss";
font-awesome css rules are loaded but, fonts are not loaded.
It seems fonts are requested by browser:
However, the response is the main html page:
Any ideas?
The text was updated successfully, but these errors were encountered:
The most likely reason is that the path is not entirely correct but I would need more information to exactly pinpoint the problem. I would recommend just using a CDN for now.
I've installed font-awesome:
I've added these rules on
constants.js
:Into my
styles.scss
I've added this import:font-awesome
css rules are loaded but, fonts are not loaded.It seems fonts are requested by browser:
However, the response is the main html page:
Any ideas?
The text was updated successfully, but these errors were encountered: