/** * next-intl Next.js 插件 - 启用国际化路由 */ const createNextIntlPlugin = require('next-intl/plugin'); const withNextIntl = createNextIntlPlugin('./src/i18n/request.ts'); /** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, output: 'standalone', }; module.exports = withNextIntl(nextConfig);