Files
Rental-operations-platform/next.config.ts
T
2026-06-25 20:13:39 -04:00

12 lines
236 B
TypeScript

import type { NextConfig } from 'next';
const nextConfig: NextConfig = {
allowedDevOrigins: ['192.168.3.3'],
compress: true,
output: 'standalone',
poweredByHeader: false,
reactStrictMode: true,
};
export default nextConfig;