ai-bot/next.config.ts

20 lines
314 B
TypeScript
Raw Permalink Normal View History

2025-01-16 10:38:01 +08:00
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
async redirects() {
return [
// Basic redirect
{
source: '/admin',
destination: '/admin/dashboard',
permanent: true,
},
]
},
2025-01-16 10:38:01 +08:00
};
export default nextConfig;