1👍
Have you tried to enable spa mode before generating static website ?
mode: 'spa',
And why don’t you use the axios helper directly instead of requiring it ?
this.$axios.get('https://www.googleapis.com/youtube/v3/search', { params })
For your background images you have to use this syntax :
background-image: url('~folder/nameoffile.ext');
- [Vuejs]-Detect entry to parent component from child component Vue
- [Vuejs]-Vuetify Data tables render nested data
Source:stackexchange.com