next.config.mjs 228 B

1234567891011121314
  1. /** @type {import('next').NextConfig} */
  2. const nextConfig = {
  3. eslint: {
  4. ignoreDuringBuilds: true,
  5. },
  6. typescript: {
  7. ignoreBuildErrors: true,
  8. },
  9. images: {
  10. unoptimized: true,
  11. },
  12. }
  13. export default nextConfig