refactor: avoid to use some deprecated properities

This commit is contained in:
2025-11-12 16:14:10 +08:00
parent dda8e13587
commit ca55ad5512
3 changed files with 12 additions and 5 deletions

View File

@@ -8,7 +8,12 @@ import App from './App.tsx'
createRoot(document.getElementById('root')!).render(
<StrictMode>
<BrowserRouter>
<BrowserRouter
future={{
v7_relativeSplatPath: true,
v7_startTransition: true,
}}
>
<App />
</BrowserRouter>
</StrictMode>,