10 lines
236 B
JavaScript
10 lines
236 B
JavaScript
/** @type {import('next').NextConfig} */
|
||
const nextConfig = {
|
||
// Deine sonstigen Next‑Optionen, z.B.:
|
||
// reactStrictMode: true,
|
||
// images: { domains: [...] },
|
||
// rewrites: async () => [ ... ],
|
||
};
|
||
|
||
module.exports = nextConfig;
|