Skip to content

Commit

Permalink
FA font in correct folder
Browse files Browse the repository at this point in the history
  • Loading branch information
Brugarolas committed Dec 27, 2018
1 parent d81fadb commit f50ebf2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,15 @@ module.exports = (env, args) => {
},
{
test: /\.(png|jpg|gif|svg)$/,
exclude: /(fa-.+\.svg)$/, /* Font Awesome */
loader: 'file-loader',
options: {
name: '[name].[ext]?[hash]',
outputPath: 'img'
}
},
{
test: /\.(woff|woff2|ttf|eot)$/,
test: [ /\.(woff|woff2|ttf|eot)$/, /(fa-.+\.svg)$/ ],
loader: 'file-loader',
options: {
name: '[name].[ext]?[hash]',
Expand Down

0 comments on commit f50ebf2

Please sign in to comment.