Using: Vue CLI 3.0.0-rc.3
How can I config my app, that it is loading the A) css itself, B) the fonts loaded in css and C) the images from a relative path depending to the parent-folder the app is located?
My complete vue app is currently running without extra webpack config file. I already know, I would need to create a webpack.config.js, but I don't know what plugins or configuration is necessary.
The app is full functional under absolute path http:whatever.local/
of course.
But I need to deliver the app complete independent from absolute path, so customer can use it under folder structure he wants and I don't know jet. http:customerssite.com/i-dont-know-his-structure/vue-app/
(I just don't know).
Thank you very much.
baseUrl: './'
invue.config.js
I get an error in the console saying it can't find the favicon.ico file every time I change the route/view (i.e click a link). It seems that it's looking for a new favicon.ico file relative to every route. i.e/shop
and/basket
both request new favicons. – Pidgin