@font-face {
font-family: "Font Custom";
font-style: normal;
font-weight: 900;
src: url("/static/fonts/font-custom.svg") format("svg");
}
.foobar {
font-family: "Font Custom";
}
module: {
rules: [
{
test: /\.(eot|svg|woff|woff2|ttf)$/,
use: [{
loader: 'file-loader',
options: {
name: '[name].[ext]',
outputPath: 'fonts/',
publicPath: 'static/fonts/'
}
}]
},
]