10 lines
228 B
TypeScript
10 lines
228 B
TypeScript
// /opt/erp-system/next.config.ts
|
|
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
serverExternalPackages: ['@prisma/client', 'pg'],
|
|
allowedDevOrigins: ['10.1.10.32'],
|
|
};
|
|
|
|
export default nextConfig;
|