From b40e2d71b0059f84b8a3ee37fe186af6ce0f45eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20FAMIBELLE-PRONZOLA?= Date: Sat, 4 Jul 2026 23:18:35 +0400 Subject: [PATCH] =?UTF-8?q?fix:=20d=C3=A9placer=20force-dynamic=20apr?= =?UTF-8?q?=C3=A8s=20les=20imports=20(import/first)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Corrige une violation ESLint introduite par le commit précédent : l'export de configuration de route doit venir après les imports. --- app/page.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/page.js b/app/page.js index bd9a7a8..590892d 100644 --- a/app/page.js +++ b/app/page.js @@ -1,5 +1,3 @@ -export const dynamic = 'force-dynamic' - import Box from '@mui/material/Box' import Container from '@mui/material/Container' import {notFound} from 'next/navigation' @@ -12,6 +10,8 @@ import AnVedette from '../components/akey/an-vedette' import Footer from '../components/footer' import Aso from '../components/akey/aso' +export const dynamic = 'force-dynamic' + async function jwennDone() { const [statistik, denyeTeks, anVedette] = await Promise.all([jwennStats(), jwennDenyeTeks(), jwennAnVedette()])