You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First of all, thanks again for the amazing template. Not only is it handy to quickly prototype an idea, but it has also taught me a lot about Vite and typescript configs that would have been hard to figure out by myself.
I'm encountering one issue where, after a simple clone of the template, the browser gives the following error: DevTools failed to load source map: Could not load content for http://localhost:3000/@vite/client.mjs.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE
It doesn't seem to have an impact on the functionality of the template, but something must be causing it.
I know you have a million other awesome projects you're working on, so this is probably not a priority for you. So, if you don't have the time, perhaps you or anyone else could give some information on how to debug an error like this and we could try to fix it in a pull request?
I've tried removing some plugins and also the optimizedeps option of Vite, but that didn't seem to fix it.
The text was updated successfully, but these errors were encountered:
I found that It is caused by @intlify/vite-plugin-vue-i18n version 3.2.1, as you can find the issue here: intlify/bundle-tools#1 (comment)
if someone worry about it, you can downgrade the plugin to version 3.1.1 (@intlify/vite-plugin-vue-i18n) to fix this warning. and then wait the plugin to upgrade.
This does indeed fix it! Thanks for the heads up. Here's hoping the problem will get fixed eventually on their side. Wish I could help them with it, but looking at the code that broke it between versions, I have no idea what the root cause is.
First of all, thanks again for the amazing template. Not only is it handy to quickly prototype an idea, but it has also taught me a lot about Vite and typescript configs that would have been hard to figure out by myself.
I'm encountering one issue where, after a simple clone of the template, the browser gives the following error:
DevTools failed to load source map: Could not load content for http://localhost:3000/@vite/client.mjs.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE
It doesn't seem to have an impact on the functionality of the template, but something must be causing it.
I know you have a million other awesome projects you're working on, so this is probably not a priority for you. So, if you don't have the time, perhaps you or anyone else could give some information on how to debug an error like this and we could try to fix it in a pull request?
I've tried removing some plugins and also the optimizedeps option of Vite, but that didn't seem to fix it.
The text was updated successfully, but these errors were encountered: