We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I am trying to set up css-split-webpack-plugin in my Rails application. It uses webpack-manifest-plugin to generate manifest.
css-split-webpack-plugin
When I compile my main.css file it gets splitted into two files:
but into the manifest is added the second file only:
cat public/packs/manifest.json => ... "main.css": "/packs/main-ba361f9ac7a251e81763-2.css", "main.css.map": "/packs/main-ba361f9ac7a251e81763-2.css.map", ...
Is it possible to fix this issue and include into the manifest both files? Like this:
... "main-1.css": "/packs/main-ba361f9ac7a251e81763-1.css", "main-1.css.map": "/packs/main-ba361f9ac7a251e81763-1.css.map", "main-2.css": "/packs/main-ba361f9ac7a251e81763-2.css", "main-2.css.map": "/packs/main-ba361f9ac7a251e81763-2.css.map", ...
The text was updated successfully, but these errors were encountered:
Hello guys, do you have any thoughts on this?
Sorry, something went wrong.
No branches or pull requests
I am trying to set up
css-split-webpack-plugin
in my Rails application. It uses webpack-manifest-plugin to generate manifest.When I compile my main.css file it gets splitted into two files:
but into the manifest is added the second file only:
Is it possible to fix this issue and include into the manifest both files? Like this:
The text was updated successfully, but these errors were encountered: