Skip to content
This repository was archived by the owner on Aug 23, 2025. It is now read-only.
Prev Previous commit
Next Next commit
Fix favicon reference
  • Loading branch information
Rick Bergfalk committed Jan 13, 2019
commit 8e31df8569b810aac2c9b0c7c5e31109033eb389
2 changes: 1 addition & 1 deletion server/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ app.set('env', debug ? 'development' : 'production')
if (debug) {
app.use(errorhandler())
}
app.use(favicon(path.join(__dirname, '../client/public/favicon.ico')))
app.use(favicon(path.join(__dirname, '/public/favicon.ico')))
app.use(bodyParser.json())
app.use(
bodyParser.urlencoded({
Expand Down