Add Favicon with React and Webpack

前端 未结 14 2135
星月不相逢
星月不相逢 2020-12-12 19:46

I am attempting to add a favicon to a React-based website that I made using webpack. It has been a total nightmare to add a favicon and I have tried many solutions to no ava

14条回答
  •  一生所求
    2020-12-12 19:53

    I use favicons-webpack-plugin

    const FaviconsWebpackPlugin = require("favicons-webpack-plugin");
    
    module.exports={
    plugins:[
        new FaviconsWebpackPlugin("./public/favicon.ico"),
    //public is in the root folder in this app. 
    
    ]
    }
    

提交回复
热议问题