diff --git a/next.config.mjs b/next.config.mjs
index 27f10c6c..3cb5e494 100644
--- a/next.config.mjs
+++ b/next.config.mjs
@@ -1,3 +1,4 @@
+/* eslint-disable @typescript-eslint/require-await */
/**
* Run `build` or `dev` with `SKIP_ENV_VALIDATION` to skip env validation. This is especially useful
* for Docker builds.
@@ -17,6 +18,15 @@ const config = {
},
],
},
+ redirects: async () => {
+ return [
+ {
+ source: "/",
+ destination: "/boards",
+ permanent: true,
+ },
+ ];
+ },
};
export default config;
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 2eae4325..7bff2ad8 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -1,7 +1,3 @@
export default function Home() {
- return (
-
- Kan
-
- );
+ return ;
}