jamulix-homepage/next.config.mjs
dschlueter 287807bab4 Fix: allowedDevOrigins auf Top-Level (nicht unter experimental)
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-25 21:12:14 +02:00

11 lines
221 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
basePath: '/landingpage',
allowedDevOrigins: ['192.168.179.124'],
images: {
unoptimized: true,
},
output: 'export',
}
export default nextConfig