mattjennings/mdsvexamples

HMR for examples

mattjennings opened this issue · 0 comments

Currently we trigger a full page reload when the example is edited

handleHotUpdate() {
// reload page when example is updated - would be nice to trigger HMR on owner svelte component instead
Object.keys(examples).forEach((key) => {
viteServer.moduleGraph.invalidateModule(viteServer.moduleGraph.getModuleById(key))
viteServer.ws.send({
type: 'full-reload'
})
})

it would be nice to HMR these changes instead, but I'm not sure how that works with virtual files.