Files
ksan.dev/next.config.ts

9 lines
169 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
allowedDevOrigins: ["192.168.100.6"],
output: "standalone",
};
export default nextConfig;