Subscribe on changes!

Won't compile with img path starting with ./

avatar
Apr 21st 2020

This won't stat (compile module) vite:

<img alt="Vue logo" src="./assets/logo.png" />

These will start even if logo is not found:

<img alt="Vue logo" src="assets/logo.png" />
<img alt="Vue logo" src="/assets/logo.png" />

I can't get any combination to work with both vite and vue-cli-service with vue 3.

avatar
Apr 21st 2020

Because it's not supported. This project isn't compatible with webpack based usage.