9 lines
272 B
TypeScript
9 lines
272 B
TypeScript
import type { NextConfig } from "next"
|
|
const nextConfig = {
|
|
experimental: {
|
|
// @ts-expect-error Flag documentada mas ainda não declarada nos tipos públicos estáveis.
|
|
turbopackFileSystemCacheForDev: true,
|
|
},
|
|
} satisfies NextConfig
|
|
|
|
export default nextConfig
|