Commit 68c36d0 1 parent bb1fd3a commit 68c36d0 Copy full SHA for 68c36d0
File tree 6 files changed +669
-463
lines changed
6 files changed +669
-463
lines changed Original file line number Diff line number Diff line change 36
36
"react-dom" : " 19.0.0" ,
37
37
"react-error-boundary" : " ^5.0.0" ,
38
38
"react-router" : " ^7.1.1" ,
39
- "react-router-dom" : " ^7.1.1" ,
40
39
"reflect-metadata" : " ^0.2.2" ,
41
40
"tiny-invariant" : " ^1.3.3" ,
42
41
"universal-cookie-express" : " ^7.2.2" ,
80
79
"@typescript-eslint/parser" : " ^8.18.2" ,
81
80
"autoprefixer" : " ^10.4.20" ,
82
81
"babel-loader" : " ^9.2.1" ,
83
- "babel-plugin-react-compiler" : " ^19.0.0-beta-b2e8e9c-20241220 " ,
82
+ "babel-plugin-react-compiler" : " latest " ,
84
83
"copy-webpack-plugin" : " ^12.0.2" ,
85
84
"cross-env" : " ^7.0.3" ,
86
85
"css-loader" : " 7.1.2" ,
87
86
"cssnano" : " ^7.0.6" ,
88
87
"eslint" : " ^9.17.0" ,
89
88
"eslint-plugin-prettier" : " ^5.2.1" ,
90
89
"eslint-plugin-react" : " ^7.37.3" ,
91
- "eslint-plugin-react-compiler" : " ^19.0.0-beta-b2e8e9c-20241220 " ,
90
+ "eslint-plugin-react-compiler" : " latest " ,
92
91
"fork-ts-checker-webpack-plugin" : " ^9.0.2" ,
93
92
"globals" : " ^15.14.0" ,
94
93
"html-loader" : " ^5.1.0" ,
Original file line number Diff line number Diff line change 1
1
import { type FC , lazy , StrictMode } from 'react'
2
- import { Route , Routes } from 'react-router-dom '
2
+ import { Route , Routes } from 'react-router'
3
3
import { CookiesProvider } from 'react-cookie'
4
4
import { type AppProps , getENV } from 'src/common'
5
5
import { Layout } from '@shared/layout'
Original file line number Diff line number Diff line change 1
1
import { Suspense } from 'react'
2
- import { Link } from 'react-router-dom'
3
- import { Outlet } from 'react-router-dom'
2
+ import { Link , Outlet } from 'react-router'
4
3
import { ErrorBoundary } from 'react-error-boundary'
5
4
import { Fallback } from '@shared/error'
6
5
import { Loader } from '@shared/loader'
Original file line number Diff line number Diff line change 1
- import { BrowserRouter } from 'react-router-dom '
1
+ import { BrowserRouter } from 'react-router'
2
2
import { bootstrap } from 'client/utils'
3
3
import { basename } from 'src/common'
4
4
import { App } from '@shared/app'
Original file line number Diff line number Diff line change 1
- import { StaticRouter } from 'react-router-dom '
1
+ import { StaticRouter } from 'react-router'
2
2
import { renderToPipeableStream } from 'react-dom/server'
3
3
import type { NextFunction , Request , Response } from 'express'
4
4
import { logger , setEnvVars , basename } from 'src/common'
You can’t perform that action at this time.
0 commit comments