2026-01-24 05:07:42 +09:00
|
|
|
import type { NextConfig } from "next";
|
2026-01-24 05:20:20 +09:00
|
|
|
import createNextIntlPlugin from 'next-intl/plugin';
|
2026-01-24 05:07:42 +09:00
|
|
|
|
2026-01-24 05:20:20 +09:00
|
|
|
const withNextIntl = createNextIntlPlugin('./src/i18n/request.ts');
|
2026-01-24 05:07:42 +09:00
|
|
|
|
2026-01-24 05:20:20 +09:00
|
|
|
const nextConfig: NextConfig = {};
|
|
|
|
|
|
|
|
|
|
export default withNextIntl(nextConfig);
|