chore: workaround for hmr speed (#42357)

* docs: workaround for hmr speed

* chore: update comment
This commit is contained in:
Peach
2023-05-15 12:28:04 +08:00
committed by GitHub
parent 4c3354592c
commit f92aa32cfe

View File

@@ -99,4 +99,9 @@ export default defineConfig({
})();
`,
],
chainWebpack(memo) {
// FIXME: disable case-sensitive-paths plugin since it costs more than 1min in HMR, wait for plugin repair then remove
memo.plugins.delete('case-sensitive-paths');
return memo;
},
});