jamulix-homepage/next.config.mjs
dschlueter 26a585ce3c Dev: allowedDevOrigins für LAN-Zugriff, pnpm-lock.yaml entfernt
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-25 20:50:56 +02:00

13 lines
246 B
JavaScript

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