Stephen Hebert
Stephen Hebert
I am seeing this issue with Vite
This is my workaround: ``` // workaround for https://github.com/vueuse/vueuse/issues/3759 import { useUrlSearchParams as useVueUseUrlSearchParams } from '@vueuse/core' const paramsInstances = new Map() export function useUrlSearchParams(preserve = true) { const key...
It seems like transpiling the sandbox code defeats the integrity of the sandbox. ESM is well supported by modern browsers, and if compatibility with older browsers is not needed by...
I don't know if it's related, but there are similar errors even when not in watch mode in certain cases -- specifically for mac and linux platforms. https://github.com/nuxt/nuxt/issues/14981 https://github.com/unocss/unocss/issues/3224 https://github.com/intlify/bundle-tools/issues/107
I am having a similar issue. Also, about 1/2 of the requests take around 5s to complete, but the delays seem to be limited to requests made via the proxy.
With the workaround discovered by @nielsvanvelzen, you can also specify an override in your package.json: ``` "overrides": { "@intlify/unplugin-vue-i18n": { "unplugin": "^1.3.2" } }, ```