HMR not working properly
Hi, when i update my index.tsx to see changes in code i need to manually refresh the page: this is minimal code, anyone else experiencing this issue?
tsx import { createFileRoute } from '@tanstack/react-router'
import { Component } from '~/components/test'
import data from '../../characters.json'
export const Route = createFileRoute('/')({
component: Home,
})
function Home() {
return (
<div className="p-8 space-y-2 pb-20">
{data.map((character) => (
<div className='max-w-3xl mx-auto'>
<img
src={character.image}
className="aspect-[4/5] h-44 object-cover"
alt={character.name}
/>
{character.name}
</div>
))}
<Component />
</div>
)
}https://x.com/powersync_/status/2010721010006552775?s=20
dry-scarlet · 3h ago
You can now submit your website/app/project to http://TanStack.com 's new showcase and have it seen by the TanStack community! - Global showcase browser - Per-library filters - Category filters Submit here: https://tanstack.com/showcase/submit View all here: https://tanstack.com/showcase
dry-scarlet · 2w ago
TanStack AI Alpha 2 is here! 🖼️ Image, video, audio, speech, transcription, structured output 📦 Split adapters = smaller bundles, faster dev/contributions, easier 🎄 Fully tree shakable adapters ✨ Cleaner, flattened, fully type-safe APIs https://tanstack.com/blog/tanstack-ai-alpha-2
dry-scarlet · 4w ago