mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-04 23:34:38 +00:00
force-static on pages
This commit is contained in:
parent
628b3870d8
commit
9f80ff3262
14 changed files with 904 additions and 670 deletions
|
@ -1,4 +1,5 @@
|
|||
import { BookmarksCategoryPage } from "#/pages/BookmarksCategory";
|
||||
export const dynamic = 'force-static';
|
||||
|
||||
const SectionTitleMapping = {
|
||||
watching: "Смотрю",
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
import { ViewCollectionPage } from "#/pages/ViewCollection";
|
||||
import { fetchDataViaGet } from "#/api/utils";
|
||||
import type { Metadata, ResolvingMetadata } from "next";
|
||||
export const dynamic = 'force-static';
|
||||
|
||||
export async function generateMetadata(
|
||||
{ params },
|
||||
|
|
|
@ -1,18 +1,10 @@
|
|||
import { CreateCollectionPage } from "#/pages/CreateCollection";
|
||||
import dynamic from "next/dynamic";
|
||||
|
||||
export const metadata = {
|
||||
title: "Создание коллекции",
|
||||
description: "Создание новой коллекции",
|
||||
};
|
||||
|
||||
const CreateCollectionDynamic = dynamic(
|
||||
() => Promise.resolve(CreateCollectionPage),
|
||||
{
|
||||
ssr: false,
|
||||
}
|
||||
);
|
||||
|
||||
export default function Collections() {
|
||||
return <CreateCollectionDynamic />;
|
||||
return <CreateCollectionPage />;
|
||||
}
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
import { IndexCategoryPage } from "#/pages/IndexCategory";
|
||||
export const dynamic = 'force-static';
|
||||
|
||||
const SectionTitleMapping = {
|
||||
last: "Последние релизы",
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
import dynamic from "next/dynamic";
|
||||
import { LoginPage } from "#/pages/Login";
|
||||
|
||||
export const metadata = {
|
||||
|
@ -6,9 +5,6 @@ export const metadata = {
|
|||
description: "Вход в аккаунт anixart",
|
||||
}
|
||||
|
||||
const LoginDynamic = dynamic(() => Promise.resolve(LoginPage), {
|
||||
ssr: false,
|
||||
});
|
||||
export default function Login() {
|
||||
return <LoginDynamic />;
|
||||
return <LoginPage />;
|
||||
}
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
import { BookmarksCategoryPage } from "#/pages/BookmarksCategory";
|
||||
import { fetchDataViaGet } from "#/api/utils";
|
||||
import type { Metadata, ResolvingMetadata } from "next";
|
||||
export const dynamic = 'force-static';
|
||||
|
||||
const SectionTitleMapping = {
|
||||
watching: "Смотрю",
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
import { BookmarksPage } from "#/pages/Bookmarks";
|
||||
import { fetchDataViaGet } from "#/api/utils";
|
||||
import type { Metadata, ResolvingMetadata } from "next";
|
||||
export const dynamic = 'force-static';
|
||||
|
||||
export async function generateMetadata(
|
||||
{ params },
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
import { CollectionsFullPage } from "#/pages/CollectionsFull";
|
||||
import { fetchDataViaGet } from "#/api/utils";
|
||||
import type { Metadata, ResolvingMetadata } from "next";
|
||||
export const dynamic = 'force-static';
|
||||
|
||||
export async function generateMetadata(
|
||||
{ params },
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
import { ProfilePage } from "#/pages/Profile";
|
||||
import { fetchDataViaGet } from "#/api/utils";
|
||||
import type { Metadata, ResolvingMetadata } from "next";
|
||||
export const dynamic = 'force-static';
|
||||
|
||||
export async function generateMetadata(
|
||||
{ params },
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
import { RelatedPage } from "#/pages/Related";
|
||||
import { fetchDataViaGet } from "#/api/utils";
|
||||
import type { Metadata, ResolvingMetadata } from "next";
|
||||
export const dynamic = 'force-static';
|
||||
|
||||
export async function generateMetadata({ params }, parent: ResolvingMetadata): Promise<Metadata> {
|
||||
const id:string = params.id;
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
import { CollectionsFullPage } from "#/pages/CollectionsFull";
|
||||
import { fetchDataViaGet } from "#/api/utils";
|
||||
import type { Metadata, ResolvingMetadata } from "next";
|
||||
export const dynamic = 'force-static';
|
||||
|
||||
export async function generateMetadata(
|
||||
{ params },
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
import { ReleasePage } from "#/pages/Release";
|
||||
import { fetchDataViaGet } from "#/api/utils";
|
||||
import type { Metadata, ResolvingMetadata } from "next";
|
||||
export const dynamic = 'force-static';
|
||||
|
||||
export async function generateMetadata(
|
||||
{ params },
|
||||
|
|
|
@ -1,18 +1,10 @@
|
|||
import dynamic from "next/dynamic";
|
||||
import { SearchPage } from "#/pages/Search";
|
||||
import { Metadata } from "next";
|
||||
|
||||
export async function generateMetadata({ searchParams }): Promise<Metadata> {
|
||||
const query = searchParams.q;
|
||||
export const metadata = {
|
||||
title: "Поиск",
|
||||
description: "Поиск аниме релизов",
|
||||
};
|
||||
|
||||
return {
|
||||
title: query || "Поиск",
|
||||
};
|
||||
}
|
||||
|
||||
const SearchDynamic = dynamic(() => Promise.resolve(SearchPage), {
|
||||
ssr: false,
|
||||
});
|
||||
export default function Search() {
|
||||
return <SearchDynamic />;
|
||||
return <SearchPage />;
|
||||
}
|
||||
|
|
1530
package-lock.json
generated
1530
package-lock.json
generated
File diff suppressed because it is too large
Load diff
Loading…
Add table
Reference in a new issue