mirror of
https://github.com/labring/FastGPT.git
synced 2025-10-16 08:01:18 +00:00
7 lines
134 B
TypeScript
7 lines
134 B
TypeScript
import { redirect } from 'next/navigation';
|
|
|
|
export default function NotFound() {
|
|
redirect(`/docs/introduction`);
|
|
return <></>;
|
|
}
|