File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 88 "start" : " node .output/server/index.mjs" ,
99 "lint" : " tsc lint:biome && tsc lint:tsc && tsc lint:unused" ,
1010 "lint:biome" : " biome check ." ,
11- "lint:tsc" : " tsc --noEmit" ,
11+ "lint:tsc" : " pnpm --package=typescript dlx tsc --noEmit" ,
1212 "lint:unused" : " ts-unused-exports tsconfig.json --excludePathsFromReport='vite.config.ts;routeTree.gen.ts;loggingMiddleware.tsx;app.config;__root.tsx;router.tsx'" ,
1313 "fix" : " tsc fix:biome" ,
1414 "fix:biome" : " biome check --write ." ,
Original file line number Diff line number Diff line change 11import { createFileRoute , redirect } from "@tanstack/react-router" ;
22
33export const Route = createFileRoute ( "/docs/" ) ( {
4- loader : ( ) =>
4+ component : ( ) =>
55 redirect ( {
66 to : "/docs/$section/$subsection" ,
77 params : { section : "getting-started" , subsection : "what-is-ethui" } ,
8- } ) ,
8+ } )
99} ) ;
You can’t perform that action at this time.
0 commit comments