Hi. Does anyone know how to make static files to not be resolved by Nuxt?
Because on same domain we have separate endpoint that responded with static files, also to work locally with that I'm proxying this url.
For example: <img src="/static/images/someimg.webp" />. For now Nuxt returns error Internal server error: Failed to resolve import "/static/images/someimg.webp" from "pages/index.vue". Does the file exist?
In project driven with clean Vite build it works ok, no any issue, because it's not assets directory. Also I can replace this url with any other at build step depending on environment.
Thanks for help 😁