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