47 lines
932 B
TypeScript
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;
|