kennzeichen/frontend/next.config.ts
2025-10-23 12:11:41 +02:00

47 lines
932 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
allowedDevOrigins: [
'http://localhost:3000',
'http://10.0.1.25:3000',
'kennzeichen.local',
'sekt.local'
],
images: {
remotePatterns: [
{
protocol: 'http',
hostname: 'localhost',
port: '3001',
pathname: '/images/**',
},
{
protocol: 'http',
hostname: '10.0.1.25',
port: '3001',
pathname: '/images/**',
},
{
protocol: 'http',
hostname: '10.0.3.6',
port: '3001',
pathname: '/images/**',
},
{
protocol: 'https',
hostname: '10.0.3.6',
port: '3001',
pathname: '/images/**',
},
{
protocol: 'https',
hostname: 'kennzeichen.tegdssd.de',
port: '3001',
pathname: '/images/**',
},
],
},
};
export default nextConfig;