-
-
Notifications
You must be signed in to change notification settings - Fork 386
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Server Side Rendering #200
Comments
I have the same problem with vue SSR. Is there any workaround? |
For now, we have removed "abc~def.css" while giving below options in webpack config: |
I needed to exclude this module while testing our app using mocha-webpack (which is SSR). Otherwise the CSS was interpreted as JS. |
Hi,
In my project am using react-loadable plugin for lazyload js files and using mini-css-extract-plugin for lazyloading css.
am using abc.js component on both pages (i.e Apage and Bpage). on Apage, abc.js component using on page dom and on Bpage using on layer.
after running minicss extract plugin, the output file name coming as Apage~Bpage.css.
Apage~Bpage.css is not accessible while using react-loadable on server side rendering. on server side rendering, route base css file is coming as loading css links like on Apage => Apage.css.
The text was updated successfully, but these errors were encountered: