sistema-de-chamados/next.config.ts
2025-10-16 20:25:46 -03:00

10 lines
194 B
TypeScript

import type { NextConfig } from "next"
const nextConfig: NextConfig = {
experimental: {
turbopackFileSystemCacheForDev: true,
trustHostHeader: true,
},
}
export default nextConfig