css import order changes between ssr: false and ssr: true
I have been working towards enabling ssr so I can get prerendering working for some of my unauthenticated routes, and now that I have it building I noticed the styles are all messed up. and it's because it isn't using the same css import order when ssr is enabled as when it isn't.
I tried combining all my stylesheets together by importing them in my sass file, and that seems to resolve the issue, but it's not possible to make sure that the css modules are loaded after the initial index.css in that case, so the library css I'm using tends to override the module css.
any ideas?
I tried combining all my stylesheets together by importing them in my sass file, and that seems to resolve the issue, but it's not possible to make sure that the css modules are loaded after the initial index.css in that case, so the library css I'm using tends to override the module css.
any ideas?
