No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 

11 líneas
280 B

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