我正在使用 Remix 和现代npx create-remix@latest
(cloudflare) 模板。它在底层使用 React 路由器 (Remix 也使用),但我在代码中没有明确使用 React 路由器。
现在我收到此警告:
⚠️ React Router Future Flag Warning: The revalidation behavior after 4xx/5xx `action` responses is changing in v7. You can use the `v7_skipActionErrorRevalidation` future flag to opt-in early. For more information, see [https://reactrouter.com/v6/upgrading/future#v7_skipactionerrorrevalidation][1].
单击链接会给我提供有关如何编辑组件以解决此问题的建议,但我的应用程序中没有这样的组件。
以下是我的(相关)未决事项:
"@remix-run/cloudflare": "^2.11.1",
"@remix-run/cloudflare-pages": "^2.11.1",
"@remix-run/react": "^2.11.1",
"remix-utils": "^7.6.0",
我该怎么做才能让这些警告日志消失/解决这个问题?