import type { NextConfig } from "next"; import createNextIntlPlugin from "next-intl/plugin"; const nextConfig: NextConfig = { // Standalone-Output für den Docker-Multi-Stage-Build (siehe Dockerfile) output: "standalone", }; const withNextIntl = createNextIntlPlugin(); export default withNextIntl(nextConfig);