feat: update i18n, next core
This commit is contained in:
parent
fc743dbb7d
commit
9ecb7d6981
|
@ -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
|
||||
}
|
10
src/i18n.ts
10
src/i18n.ts
|
@ -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
|
||||
}));
|
|
@ -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<typeof ALLOWED_LOCALES>,
|
||||
localePrefix: LOCALE_PREFIX
|
||||
});
|
Loading…
Reference in New Issue