14 lines
294 B
TypeScript
14 lines
294 B
TypeScript
import type { NextConfig } from "next"
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "standalone",
|
|
cacheComponents: true,
|
|
reactCompiler: true,
|
|
experimental: {
|
|
turbopackFileSystemCacheForDev: true,
|
|
},
|
|
allowedDevOrigins: ["192.168.3.42", "192.168.3.14"],
|
|
}
|
|
|
|
export default nextConfig
|