Short description:Add functionality and the resources necessary for a useable and legally viable icon for the web app
This can be rather easily injected server-side via adding the dependency and pointing to the resource for use:
var favicon = require('serve-favicon');app.use(favicon(__dirname + '/public/favicon.ico'));
There are also plenty of websites that convert images to .ico format for us to use, eg. http://www.icoconverter.com/... We just have to make sure that we either create our own image, use one of Mike's logos with his permission, or get a stock one under an open license, the last of which I strongly discourage because I'm not sure where we stand with this project in terms of legal stuff...
ESTIMATE: 0.5-1hrs DUE: TBD ASSIGNED: TBD BLOCKS: None BLOCKED BY: #4
Short description: Add functionality and the resources necessary for a useable and legally viable icon for the web app
This can be rather easily injected server-side via adding the dependency and pointing to the resource for use:
var favicon = require('serve-favicon');
app.use(favicon(__dirname + '/public/favicon.ico'));
There are also plenty of websites that convert images to .ico format for us to use, eg. http://www.icoconverter.com/... We just have to make sure that we either create our own image, use one of Mike's logos with his permission, or get a stock one under an open license, the last of which I strongly discourage because I'm not sure where we stand with this project in terms of legal stuff...