code splitting file based routing doesn't work for memory history?
1. i try to use
2. i try to turn off
3. i try to make it into 2 files, from
4. i also try to use lazy
what's the problem?
autoCodeSplitting: true in vite, it turns out it doesn't work2. i try to turn off
autoCodeSplitting: false then suffix all route with .lazy.tsx, like from "features.tsx to features.lazy.tsx,still doesn't work3. i try to make it into 2 files, from
features.tsx tofeatures/index.tsx and features/index.lazy.tsx4. i also try to use lazy
component: lazy(() =>import("./index.lazy").then((mod) => ({ default: mod.BlogAds }))), still doesn't workwhat's the problem?
"@tanstack/react-router": "^1.114.3"