Files
formularios_front/next.config.ts
T
2025-09-29 12:13:38 -06:00

20 lines
339 B
TypeScript

import type { NextConfig } from 'next';
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{
protocol: 'http',
hostname: 'localhost',
port: '3342', //4200
},
{
protocol: 'https',
hostname: 'venus.acatlan.unam.mx'
}
],
},
};
export default nextConfig;