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:
13 lines
222 B
JavaScript
13 lines
222 B
JavaScript
import dynamic from "next/dynamic";
|
|
|
|
const SearchPage = dynamic(() => import("../components/Pages/SearchPage"), {
|
|
ssr: false,
|
|
});
|
|
|
|
export default function Search() {
|
|
return (
|
|
<>
|
|
<SearchPage />
|
|
</>
|
|
);
|
|
}
|