AniX/app/page.tsx

7 lines
144 B
TypeScript

import { IndexPage } from "./pages/Index";
export const dynamic = "force-static";
export default function Index() {
return <IndexPage />;
}