File "next.config.ts"

Full Path: /home/trinadezambia/public_html/student_panel/next.config.ts
File size: 295 bytes
MIME-type: text/x-java
Charset: utf-8

import type { NextConfig } from 'next';

const nextConfig: NextConfig = {
  /* config options here */
  // output: 'export',
  images: {
    unoptimized: true,
  },
  typescript: {
    ignoreBuildErrors: true,
  },
  eslint: {
    ignoreDuringBuilds: true,
  },
};
  
export default nextConfig;