index.tsx 233 B

12345678
  1. // 如果当前是在 /big 下
  2. if (window.location.pathname.startsWith('/admin')) {
  3. import('./admin/index')
  4. } else if (window.location.pathname.startsWith('/tenant')) {
  5. import('./tenant/index')
  6. } else {
  7. import('./home/index')
  8. }