diff --git a/components/grid/tile.tsx b/components/grid/tile.tsx index cf9aa49a9..f79a459f4 100644 --- a/components/grid/tile.tsx +++ b/components/grid/tile.tsx @@ -20,7 +20,7 @@ export function GridTileImage({ return (
diff --git a/next.config.js b/next.config.js index 7a65540b1..53a8515e2 100644 --- a/next.config.js +++ b/next.config.js @@ -16,5 +16,14 @@ module.exports = { pathname: '/s/files/**' } ] + }, + async redirects() { + return [ + { + source: '/password', + destination: '/', + permanent: true + } + ]; } };