vite 怎么阻止某一页面的热更新
用下面这个方法会在调用热更新进报错,导致热更新失效,挺有意思
有组件顶部加入下面代码
if (import.meta.hot) {import.meta.hot.accept((newModule) => {if (newModule) {newModule.hot.decline()}})
}
报错:signin.tsx:44 Uncaught (in promise) TypeError: Cannot read properties of undefined (reading 'decline')
导致热更新不执行了,其它方法还没想到