12 lines
198 B
TypeScript
12 lines
198 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
/* config options here */
|
|
allowedDevOrigins: [
|
|
"192.168.10.13",
|
|
"localhost",
|
|
]
|
|
};
|
|
|
|
export default nextConfig;
|