11 lines
239 B
TypeScript
11 lines
239 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
/* config options here */
|
|
experimental: {
|
|
allowedDevOrigins: ['localhost', '127.0.0.1', '192.168.1.20', '192.168.1.0/24']
|
|
}
|
|
};
|
|
|
|
export default nextConfig;
|