From c424febf1f42e7a18d9357a89f996c4fc3413944 Mon Sep 17 00:00:00 2001 From: Esdras Renan Date: Thu, 16 Oct 2025 20:33:32 -0300 Subject: [PATCH] chore: update Next 16 beta config --- next.config.ts | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) 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