import type { NextConfig } from 'next' const config: NextConfig = { output: 'standalone', experimental: { serverActions: { allowedOrigins: ['preis.kuns.dev'] }, }, images: { remotePatterns: [ { protocol: 'https', hostname: '**.amazon.com' }, { protocol: 'https', hostname: '**.amazon.de' }, { protocol: 'https', hostname: '**.media-amazon.com' }, { protocol: 'https', hostname: '**.idealo.com' }, { protocol: 'https', hostname: '**.geizhals.de' }, ], }, } export default config