const nextConfig = {
  experimental: {
    serverActions: {}, // Provide an object if server actions are being used
  },
  typescript: {
    ignoreBuildErrors: true, // Ignore TypeScript errors
  },
  eslint: {
    ignoreDuringBuilds: true, // Ignore ESLint errors
  },
};

export default nextConfig;
