From 2fe28279c87e1805bd30a74b22d113879ad9388c Mon Sep 17 00:00:00 2001 From: AkaraChen Date: Tue, 22 Oct 2024 14:09:31 +0800 Subject: [PATCH] build: update react refresh ignore --- web/eslint.config.mjs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/web/eslint.config.mjs b/web/eslint.config.mjs index 389c064e0b..0849530aea 100644 --- a/web/eslint.config.mjs +++ b/web/eslint.config.mjs @@ -178,6 +178,9 @@ export default combine( GLOB_TSX, GLOB_JSX, ], + ignores: [ + "**/{page,layout}.tsx", + ], plugins: { "react-refresh": reactRefresh, },