Files
d8d-vite-starter/src/client/index.tsx
D8D Developer d371fbaefa init
2025-06-27 03:31:29 +00:00

6 lines
151 B
TypeScript

// 如果当前是在 /big 下
if (window.location.pathname.startsWith('/admin')) {
import('./admin/index')
}else{
import('./home/index')
}