Files
wtr/next.config.ts

9 lines
170 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
allowedDevOrigins: ["192.168.0.174"],
reactStrictMode: true,
};
export default nextConfig;