Files

20 lines
341 B
TypeScript
Raw Permalink Normal View History

import type { NextConfig } from 'next';
2025-04-01 09:35:40 -06:00
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{
protocol: 'http',
hostname: 'localhost',
port: '4200', //4200
},
{
protocol: 'https',
hostname: 'venus.acatlan.unam.mx',
},
],
},
2025-04-01 09:35:40 -06:00
};
export default nextConfig;