feat(website): add next-intl i18n and dark mode support

This commit is contained in:
justsisyphus
2026-01-24 05:20:20 +09:00
parent b7d3417d2e
commit f28c8a45dd
19 changed files with 392 additions and 57 deletions
+5 -4
View File
@@ -1,7 +1,8 @@
import type { NextConfig } from "next";
import createNextIntlPlugin from 'next-intl/plugin';
const nextConfig: NextConfig = {
/* config options here */
};
const withNextIntl = createNextIntlPlugin('./src/i18n/request.ts');
export default nextConfig;
const nextConfig: NextConfig = {};
export default withNextIntl(nextConfig);