Files
Rental-operations-platform/next.config.ts
T
2026-06-25 19:06:59 -04:00

11 lines
198 B
TypeScript

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