mirror of
https://github.com/Radiquum/AniX.git
synced 2025-09-05 22:15:36 +05:00
7 lines
144 B
TypeScript
7 lines
144 B
TypeScript
import { IndexPage } from "./pages/Index";
|
|
|
|
export const dynamic = "force-static";
|
|
|
|
export default function Index() {
|
|
return <IndexPage />;
|
|
}
|