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

12 lines
276 B
TypeScript

import type { NextConfig } from "next"
const nextConfig: NextConfig = {
server: {
allowedHosts: ["tickets.esdrasrenan.com.br", "convex.esdrasrenan.com.br", "localhost"],
},
experimental: {
turbopackFileSystemCacheForDev: true,
},
}
export default nextConfig