force-static for non-dynamic metadata

This commit is contained in:
Kentai Radiquum 2025-08-22 04:46:18 +05:00
parent 6e38565439
commit 96904bcb9c
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
10 changed files with 20 additions and 0 deletions

View file

@ -2,6 +2,8 @@ export const metadata = {
title: "Закладки",
};
export const dynamic = "force-static";
import { BookmarksPage } from "#/pages/Bookmarks";
export default function Index() {
return <BookmarksPage />;

View file

@ -5,6 +5,8 @@ export const metadata = {
description: "Создание новой коллекции",
};
export const dynamic = "force-static";
export default function Collections() {
return <CreateCollectionPage />;
}

View file

@ -5,6 +5,8 @@ export const metadata = {
description: "Просмотр избранных коллекций",
};
export const dynamic = "force-static";
export default function Collections() {
return <CollectionsFullPage type="favorites" title="Избранные коллекции" />;
}

View file

@ -5,6 +5,8 @@ export const metadata = {
description: "Просмотр и управление коллекциями",
}
export const dynamic = "force-static";
export default function Collections() {
return <CollectionsPage />;
}

View file

@ -4,6 +4,8 @@ export const metadata = {
import { FavoritesPage } from "#/pages/Favorites";
export const dynamic = "force-static";
export default function Index() {
return <FavoritesPage />;
}

View file

@ -4,6 +4,8 @@ export const metadata = {
import { HistoryPage } from "#/pages/History";
export const dynamic = "force-static";
export default function Index() {
return <HistoryPage />;
}

View file

@ -5,6 +5,8 @@ export const metadata = {
description: "Вход в аккаунт anixart",
}
export const dynamic = "force-static";
export default function Login() {
return <LoginPage />;
}

View file

@ -4,6 +4,8 @@ export const metadata = {
import { MenuPage } from "#/pages/MobileMenuPage";
export const dynamic = "force-static";
export default function Index() {
return <MenuPage />;
}

View file

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

View file

@ -5,6 +5,8 @@ export const metadata = {
description: "Поиск аниме релизов",
};
export const dynamic = "force-static";
export default function Search() {
return <SearchPage />;
}