d3e1441f87
- Implemented bulk upload for students and workers with file validation and error handling. - Added Excel template download feature for user uploads. - Created success page for form submissions with QR code display. - Established context and reducer for form state management, including user search and response handling. - Added mermaid diagrams for event registration documentation.
20 lines
341 B
TypeScript
20 lines
341 B
TypeScript
import type { NextConfig } from 'next';
|
|
|
|
const nextConfig: NextConfig = {
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: 'http',
|
|
hostname: 'localhost',
|
|
port: '4200', //4200
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'venus.acatlan.unam.mx',
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|