diff --git a/next.config.mjs b/next.config.mjs index fce5b1fa..951c44b2 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,9 +1,13 @@ +import createNextIntlPlugin from 'next-intl/plugin.js'; + +const withNextIntl = createNextIntlPlugin(); + /** @type {import('next').NextConfig} */ const nextConfig = { eslint: { - ignoreDuringBuilds: true, + ignoreDuringBuilds: true }, - output: "standalone" + output: 'standalone' }; -export default nextConfig; +export default withNextIntl(nextConfig);