2025-06-16 18:25:12 -06:00
|
|
|
import type { NextConfig } from 'next';
|
2025-04-01 09:35:40 -06:00
|
|
|
|
|
|
|
|
const nextConfig: NextConfig = {
|
2025-06-16 18:25:12 -06:00
|
|
|
images: {
|
|
|
|
|
remotePatterns: [
|
|
|
|
|
{
|
|
|
|
|
protocol: 'http',
|
|
|
|
|
hostname: 'localhost',
|
2026-03-08 19:18:23 -06:00
|
|
|
port: '4200', //4200
|
2025-06-16 18:25:12 -06:00
|
|
|
},
|
2025-06-18 12:37:47 -06:00
|
|
|
{
|
|
|
|
|
protocol: 'https',
|
2026-03-08 19:18:23 -06:00
|
|
|
hostname: 'venus.acatlan.unam.mx',
|
|
|
|
|
},
|
2025-06-16 18:25:12 -06:00
|
|
|
],
|
|
|
|
|
},
|
2025-04-01 09:35:40 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default nextConfig;
|