9 lines
179 B
TypeScript
9 lines
179 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
/* config options here */
|
|
allowedDevOrigins: ['10.8.0.2', '*.local'],
|
|
};
|
|
|
|
export default nextConfig;
|