8 lines
151 B
TypeScript
8 lines
151 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
allowedDevOrigins: ['hub.tesscorp.com.mx'],
|
|
};
|
|
|
|
export default nextConfig;
|