10 lines
203 B
TypeScript
10 lines
203 B
TypeScript
import type { NextConfig } from "next"
|
|
|
|
const nextConfig = {
|
|
experimental: {
|
|
turbopackFileSystemCacheForDev: true,
|
|
trustHostHeader: true,
|
|
},
|
|
} satisfies NextConfig
|
|
|
|
export default nextConfig
|