diff --git a/next.config.js b/next.config.js index 9574ab8..3d7c303 100644 --- a/next.config.js +++ b/next.config.js @@ -1,11 +1,8 @@ /** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, - eslint: { - // Désactiver ESLint lors du build pour permettre le déploiement - // Les erreurs doivent être corrigées mais n'empêchent pas le build - ignoreDuringBuilds: true, - }, + // Note: eslint configuration in next.config.js is no longer supported in Next.js 16+ + // Use 'next lint --ignore-build-errors' or configure in .eslintrc.json instead typescript: { // Désactiver la vérification TypeScript lors du build ignoreBuildErrors: true,