This commit is contained in:
2026-03-05 22:02:44 +08:00
parent d196b24d07
commit 575feec78b
38 changed files with 1502 additions and 431 deletions

View File

@@ -2,12 +2,12 @@ import ReactDOM from 'react-dom/client'
import { RouterProvider, createRouter } from '@tanstack/react-router'
import { routeTree } from './routeTree.gen'
import './index.css'
import { basename } from './modules/basename'
// import './agents/app'
import { getDynamicBasename } from './modules/basename'
import './agents/index.ts';
// Set up a Router instance
const router = createRouter({
routeTree,
basepath: basename,
basepath: getDynamicBasename(),
defaultPreload: 'intent',
scrollRestoration: true,
})