feat: add basic webui
This commit is contained in:
49
apps/web/app/sitemap.ts
Normal file
49
apps/web/app/sitemap.ts
Normal file
@@ -0,0 +1,49 @@
|
||||
import fs from 'node:fs';
|
||||
import { env } from '@konobangu/env';
|
||||
import type { MetadataRoute } from 'next';
|
||||
|
||||
const appFolders = fs.readdirSync('app', { withFileTypes: true });
|
||||
const pages = appFolders
|
||||
.filter((file) => file.isDirectory())
|
||||
.filter((folder) => !folder.name.startsWith('_'))
|
||||
.filter((folder) => !folder.name.startsWith('('))
|
||||
.map((folder) => folder.name);
|
||||
|
||||
const blogs = fs
|
||||
.readdirSync('content/blog', { withFileTypes: true })
|
||||
.filter((file) => !file.isDirectory())
|
||||
.filter((file) => !file.name.startsWith('_'))
|
||||
.filter((file) => !file.name.startsWith('('))
|
||||
.map((file) => file.name.replace('.mdx', ''));
|
||||
|
||||
const legals = fs
|
||||
.readdirSync('content/legal', { withFileTypes: true })
|
||||
.filter((file) => !file.isDirectory())
|
||||
.filter((file) => !file.name.startsWith('_'))
|
||||
.filter((file) => !file.name.startsWith('('))
|
||||
.map((file) => file.name.replace('.mdx', ''));
|
||||
|
||||
const sitemap = async (): Promise<MetadataRoute.Sitemap> => [
|
||||
{
|
||||
url: env.NEXT_PUBLIC_VERCEL_PROJECT_PRODUCTION_URL,
|
||||
lastModified: new Date(),
|
||||
},
|
||||
...pages.map((page) => ({
|
||||
url: new URL(page, env.NEXT_PUBLIC_VERCEL_PROJECT_PRODUCTION_URL).href,
|
||||
lastModified: new Date(),
|
||||
})),
|
||||
...blogs.map((blog) => ({
|
||||
url: new URL(`blog/${blog}`, env.NEXT_PUBLIC_VERCEL_PROJECT_PRODUCTION_URL)
|
||||
.href,
|
||||
lastModified: new Date(),
|
||||
})),
|
||||
...legals.map((legal) => ({
|
||||
url: new URL(
|
||||
`legal/${legal}`,
|
||||
env.NEXT_PUBLIC_VERCEL_PROJECT_PRODUCTION_URL
|
||||
).href,
|
||||
lastModified: new Date(),
|
||||
})),
|
||||
];
|
||||
|
||||
export default sitemap;
|
||||
Reference in New Issue
Block a user