visitapp-web/next.config.ts
2026-05-09 00:22:28 +02:00

24 lines
391 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
allowedDevOrigins: ['192.168.31.228'],
reactCompiler: true,
turbopack: {
root: __dirname,
},
images: {
remotePatterns: [
{
protocol: 'https',
hostname: '**',
},
{
protocol: 'http',
hostname: '**',
},
],
},
};
export default nextConfig;