Files
wm-projekt/next.config.mjs
2026-06-22 15:32:32 -05:00

7 lines
174 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: "standalone", // schlankes Docker-Image
reactStrictMode: true,
};
export default nextConfig;