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.
I've installed font-awesome:
I've added these rules on
constants.js:Into my
styles.scssI've added this import:font-awesomecss 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?