Browse Source

Fix favicon 404s in dev

pull/2032/head
Gabe Kangas 4 years ago
parent
commit
dde9878a46
No known key found for this signature in database
GPG Key ID: 9A56337728BC81EA
  1. 4
      web/next.config.js

4
web/next.config.js

@ -33,6 +33,10 @@ module.exports = withLess({ @@ -33,6 +33,10 @@ module.exports = withLess({
source: '/thumbnail.jpg',
destination: 'http://localhost:8080/thumbnail.jpg', // Proxy to Backend to work around CORS.
},
{
source: '/favicon.ico',
destination: 'http://localhost:8080/favicon.ico', // Proxy to Backend to work around CORS.
},
];
},
});

Loading…
Cancel
Save