diff --git a/next.config.ts b/next.config.ts index d7e6666..64f11cf 100644 --- a/next.config.ts +++ b/next.config.ts @@ -1,12 +1,13 @@ import type { NextConfig } from "next" -const nextConfig: NextConfig = { - server: { - allowedHosts: ["tickets.esdrasrenan.com.br", "convex.esdrasrenan.com.br", "localhost"], - }, +const nextConfig = { experimental: { turbopackFileSystemCacheForDev: true, }, -} + // @ts-expect-error server.allowedHosts ainda não tipado no beta + server: { + allowedHosts: ["tickets.esdrasrenan.com.br", "convex.esdrasrenan.com.br", "localhost"], + }, +} satisfies NextConfig export default nextConfig