From 9ecb7d69817b72e72d9f295eb2d1518af7c0231d Mon Sep 17 00:00:00 2001 From: SD Date: Mon, 17 Feb 2025 01:00:27 +0400 Subject: [PATCH] feat: update i18n, next core --- src/app/sitemap.jsx | 27 --------------------------- src/i18n.ts | 10 ---------- src/navigation.ts | 17 ----------------- 3 files changed, 54 deletions(-) delete mode 100644 src/app/sitemap.jsx delete mode 100644 src/i18n.ts delete mode 100644 src/navigation.ts diff --git a/src/app/sitemap.jsx b/src/app/sitemap.jsx deleted file mode 100644 index 4dd1000..0000000 --- a/src/app/sitemap.jsx +++ /dev/null @@ -1,27 +0,0 @@ -import { fetchBlogPosts } from '../lib/contentful/blogPosts'; - -export default async function sitemap() { - const paths = [ - { - url: process.env.NEXT_PUBLIC_HOST, - lastModified: new Date(), - changeFrequency: "monthly", - priority: 1 - } - ] - - - const blogPosts = await fetchBlogPosts({ preview: false }) - - blogPosts.data.forEach((item) => { - - paths.push({ - url: `${process.env.NEXT_PUBLIC_HOST}${item.slug}`, - lastModified: item.createdAt.split('T')[0], - changeFrequency: 'daily', - priority: '1.0' - }) - }) - - return paths -} diff --git a/src/i18n.ts b/src/i18n.ts deleted file mode 100644 index b158eba..0000000 --- a/src/i18n.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { getRequestConfig } from 'next-intl/server'; -import { Locale } from './types/locale'; - -export default getRequestConfig(async ({ locale }) => ({ - messages: ( - await (locale === Locale.en - ? import('../messages/en.json') - : import(`../messages/${locale}.json`)) - ).default -})); diff --git a/src/navigation.ts b/src/navigation.ts deleted file mode 100644 index 73be56f..0000000 --- a/src/navigation.ts +++ /dev/null @@ -1,17 +0,0 @@ -import { createLocalizedPathnamesNavigation, Pathnames } from 'next-intl/navigation'; -import { ALLOWED_LOCALES, LOCALE_PREFIX } from './constants/locale'; - -export const { Link, redirect, usePathname, useRouter } = - createLocalizedPathnamesNavigation({ - locales: ALLOWED_LOCALES, - pathnames: { - '/': '/', - // '/experts': '/experts', - // '/experts/[expertId]': '/experts/[expertId]', - // '/news': '/news', - // '/privacy-policy': '/privacy-policy', - // '/[userId]': '/[userId]', - // '/[userId]/[...slug]': '/[userId]/[...slug]', - } satisfies Pathnames, - localePrefix: LOCALE_PREFIX - });