From dde9878a46f587581e527709f0b8f0637094f1e3 Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Wed, 25 May 2022 20:24:13 -0700 Subject: [PATCH] Fix favicon 404s in dev --- web/next.config.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/web/next.config.js b/web/next.config.js index feaabfece..56500b081 100644 --- a/web/next.config.js +++ b/web/next.config.js @@ -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. + }, ]; }, });