next.config.js 321 B

123456789101112
  1. /**
  2. * next-intl Next.js 插件 - 启用国际化路由
  3. */
  4. const createNextIntlPlugin = require('next-intl/plugin');
  5. const withNextIntl = createNextIntlPlugin('./src/i18n/request.ts');
  6. /** @type {import('next').NextConfig} */
  7. const nextConfig = {
  8. reactStrictMode: true,
  9. };
  10. module.exports = withNextIntl(nextConfig);