8 lines
No EOL
182 B
TypeScript
8 lines
No EOL
182 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
// Add this to allow network access
|
|
allowedDevOrigins: ['192.168.50.47'],
|
|
};
|
|
|
|
export default nextConfig; |