Thanks to Mohammad Hosein Feizi for the temporary solution provided here Github link. The Errors are now gone from the console
Demo can be found here https://v3customized.behonbaker.com/
-
Create a Nitro plugin at
server/plugins/vuetify.fix.ts
-
Add this to the plugin
export default defineNitroPlugin((nitroApp) => {
nitroApp.hooks.hook("render:response", (response: any) => {
response.body = response.body.replaceAll("/_nuxt/\0", "/_nuxt/");
});
});