Search code examples
cssvue.jsrefresh

When i refresh a VueJS page with opened modale i loose CSS style


I have a little problem, a little "classic" question, but I can't find an answer to this one...

Let me explain. When I have a page with a modal component, and when I just want to refresh the page of my browser, the page refreshes but I lose all my style...

Could you explain why?

Before refreshing

enter image description here

After refreshment

enter image description here

Regards, Christophe


Solution

  • Resolved, the problem was with the css call on public/index.html

    Not working

    <link rel="stylesheet" href="css/all.css">
    

    Working

    <link rel="stylesheet" href="/css/all.css">