sistema-de-chamados/next.config.ts
2025-10-16 19:42:58 -03:00

9 lines
167 B
TypeScript

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