fix(website): redirect for logo

This commit is contained in:
iCrawl 2023-04-01 13:32:10 +02:00
parent 52c6ea2fdb
commit a5b0d97224
No known key found for this signature in database
GPG key ID: 1AB888B16355FBB2

View file

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