diff --git a/application/next.config.js b/application/next.config.js new file mode 100644 index 0000000..c20e25f --- /dev/null +++ b/application/next.config.js @@ -0,0 +1,11 @@ +module.exports = { + async redirects() { + return [ + { + source: '/', + destination: '/feeds', + permanent: true, + }, + ] + }, +} diff --git a/application/src/components/Layout.tsx b/application/src/components/Layout.tsx index 0f3ffd1..ff8bc5a 100644 --- a/application/src/components/Layout.tsx +++ b/application/src/components/Layout.tsx @@ -35,7 +35,7 @@ const Layout: React.FC<{ matomoConfig: UserOptions, children: React.ReactNode }>