import type { NextConfig } from "next"; import { BASE_PATH } from "./lib/config"; const nextConfig: NextConfig = { basePath: BASE_PATH || undefined, allowedDevOrigins: ['10.210.1.225'], serverExternalPackages: ['sanitize-html', 'file-type'], }; export default nextConfig;