From a5b0d972246434a29125f149c6bd97d1668fcb7a Mon Sep 17 00:00:00 2001 From: iCrawl Date: Sat, 1 Apr 2023 13:32:10 +0200 Subject: [PATCH] fix(website): redirect for logo --- apps/website/next.config.js | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/apps/website/next.config.js b/apps/website/next.config.js index 68ebb93bf..86a48f773 100644 --- a/apps/website/next.config.js +++ b/apps/website/next.config.js @@ -26,4 +26,13 @@ export default withBundleAnalyzer({ contentDispositionType: 'attachment', contentSecurityPolicy: "default-src 'self'; frame-src 'none'; sandbox;", }, + async redirects() { + return [ + { + source: '/static/logo.svg', + destination: '/logo.svg', + permanent: true, + }, + ]; + }, });