atualização para next.js 16 beta

This commit is contained in:
Esdras Renan 2025-10-16 19:42:58 -03:00
parent 1ce402cdd7
commit 70c73db907
6 changed files with 168 additions and 98 deletions

View file

@ -1,7 +1,9 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
};
export default nextConfig;
import type { NextConfig } from "next"
const nextConfig: NextConfig = {
experimental: {
turbopackFileSystemCacheForDev: true,
},
}
export default nextConfig