1👍
What I did to fix the problem when I experienced it was to go into the files after the build and convert the paths to relative by adding dots(.), that is:
/static/css/randomstring.css
/static/js/randomstring.js
to
./static/css/randomstring.css
./static/js/randomstring.js
this solved the problem without having to change any configs or get new libraries installed.
- [Vuejs]-Vuex `people[0] = { age: people[0].age + 1 };` won't trigger re-render, why?
- [Vuejs]-NativeScript Vue.js add a button linking to a website
Source:stackexchange.com