-
Notifications
You must be signed in to change notification settings - Fork 361
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
Add support for css preprocessors #699
Comments
Hey, thank you for opening this issue. Why would you want to keep preprocess css? Microbundle is opinionated to compile everything away into css & javascript bundles. If you're looking for a different use case we suggest using rollup or any other bundler. |
@wardpeet thanks for the reply, by that doesn't work for my use case, ill explain I have typescript a react component
and a style.scss file
building the component process the .scss file to index.scss contains the following:
the issue is when testing the component when inspected on the browser the className property remains as |
I believe the processed index.css file is not being required inside the build file |
Hi - this is CSS Modules, and is working as designed. You can turn it off by passing If you're still seeing this behavior with |
I'm going to close this one out since it's either working-as-designed or a duplicate of #653. |
Currently my scss files get compiled to css, I suggest there should be an option to turn off css bundling and support other css preprocessor
The text was updated successfully, but these errors were encountered: