Advertisement
Guest User

Untitled

a guest
Jul 24th, 2017
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. @index.html
  2. <link rel="shortcut icon" type="image/x-icon" href="./favicon.ico">
  3.  
  4. @package.json
  5. "devDependencies": {
  6. ...
  7. "favicons-webpack-plugin": "0.0.7",
  8. ...
  9. }
  10.  
  11. @webpack.config.js
  12. const FaviconsWebpackPlugin = require('favicons-webpack-plugin');
  13. ...
  14. plugins: [HTMLWebpackPluginConfig, new FaviconsWebpackPlugin(__dirname + '/app/favicon.png')],
  15. ...
  16. module: {
  17. loaders: [
  18. ...
  19. {
  20. test: /\.ico$|\.jpe?g$|\.gif$|\.png$|\.svg$/,
  21. loader: 'file-loader?name=[name].[ext]'
  22. },
  23. ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement