kennzeichen-seite/frontend/next.config.js
2026-05-20 20:47:07 +02:00

11 lines
210 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: "standalone",
images: {
remotePatterns: [
{ protocol: "https", hostname: "**" },
],
},
};
module.exports = nextConfig;