Reputation: 927
Is there any solution for Vuejs and Bootstrap 4 compatibility with Internet browser on PlayStation 4? When I open my website it just shows our background color and that's it.
So I would like to hear your suggestions. Is there any solution for this? My last solution will be to detect old browsers and show a message that we don't support older browsers.
We use vue 2.5.16 and Bootstrap 4
Upvotes: 5
Views: 210
Reputation: 86
I would consider using a server side rendering solution to maximise compatibility. You can find more information about recommended solution for SSR with vue such as Nuxt.js here https://v2.vuejs.org/v2/guide/ssr.html
Depending on the complexity of your site, using SSR to pre-render static sites could be an ideal solution.
I would also recommend adding the snippet you mentioned to inform the user incase there browser is not supported, or better yet forward them to a simpler version that is.
Upvotes: 0