Update next.config.mjs

This commit is contained in:
Marvin 2025-04-18 20:24:14 +02:00 committed by GitHub
parent 2c80a98c9d
commit 01bba6cb84
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,9 +1,13 @@
import createNextIntlPlugin from 'next-intl/plugin.js';
const withNextIntl = createNextIntlPlugin();
/** @type {import('next').NextConfig} */ /** @type {import('next').NextConfig} */
const nextConfig = { const nextConfig = {
eslint: { eslint: {
ignoreDuringBuilds: true, ignoreDuringBuilds: true
}, },
output: "standalone" output: 'standalone'
}; };
export default nextConfig; export default withNextIntl(nextConfig);