Fix favicon 404s in dev

This commit is contained in:
Gabe Kangas 2022-05-25 20:24:13 -07:00
parent fd131a25af
commit dde9878a46
No known key found for this signature in database
GPG key ID: 9A56337728BC81EA

View file

@ -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.
},
];
},
});