How do you change generator-angular-fullstack favicon?
How do you change generator-angular-full flashlight?
I am deploying a starter project https://github.com/DaftMonk/generator-angular-fullstack (the most popular youma generator). This is a full screen structure. By default, it uses a boyfriend-boyfriend as its icon. Is there a way to change it?
Nothing helps. Thanks!
+2
a source to share
1 answer
Either put your own favicon.ico
in the root of your domain (accessible for example http://example.com/favicon.ico
), or put it in the head of the HTML:
<link rel="icon" href="http://example.com/favicon.ico" type="image/x-icon">
<link rel="shortcut icon" type="image/x-icon" href="img/favicon.ico" />
<link type="image/x-icon" href="img/favicon.ico" />
+11
a source to share