From 01bba6cb84f80f95530273af3e92c69ae9de6e5e Mon Sep 17 00:00:00 2001 From: Marvin <127591405+Lokowitz@users.noreply.github.com> Date: Fri, 18 Apr 2025 20:24:14 +0200 Subject: [PATCH] Update next.config.mjs --- next.config.mjs | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) 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);