mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-05 07:44:38 +00:00
- **BREAKING CHANGE**: Api url now /api/v1 \n **Fix**: Frontend build. \n **Fix**: errors about unknown styles BREAKING CHANGE:
14 lines
230 B
JavaScript
14 lines
230 B
JavaScript
"use client";
|
|
|
|
import dynamic from "next/dynamic";
|
|
|
|
const IndexPage = dynamic(() => import("./components/Pages/IndexPage"), {
|
|
ssr: false,
|
|
});
|
|
export default function Home() {
|
|
return (
|
|
<>
|
|
<IndexPage />
|
|
</>
|
|
);
|
|
}
|