Files
formularios_front/next.config.ts
T

20 lines
332 B
TypeScript

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