10 lines
196 B
TypeScript
10 lines
196 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
/* config options here */
|
|
reactCompiler: true,
|
|
allowedDevOrigins: ['192.168.29.245']
|
|
};
|
|
|
|
export default nextConfig;
|