9 lines
167 B
TypeScript
9 lines
167 B
TypeScript
import type { NextConfig } from "next"
|
|
|
|
const nextConfig: NextConfig = {
|
|
experimental: {
|
|
turbopackFileSystemCacheForDev: true,
|
|
},
|
|
}
|
|
|
|
export default nextConfig
|