chore: cal.ai redirect (#11130)

pull/11135/head^2
Peer Richelsen 2023-09-04 18:21:37 +02:00 committed by GitHub
parent d26bab5880
commit 3c5901edb8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 0 deletions

View File

@ -5,6 +5,15 @@ plugins.push(withBundleAnalyzer({ enabled: process.env.ANALYZE === "true" }));
/** @type {import("next").NextConfig} */
const nextConfig = {
async redirects() {
return [
{
source: '/',
destination: 'https://cal.com/ai',
permanent: true,
},
]
},
i18n: {
defaultLocale: "en",
locales: ["en"],
@ -13,3 +22,4 @@ const nextConfig = {
};
module.exports = () => plugins.reduce((acc, next) => next(acc), nextConfig);