Closed codyng closed 2 months ago
See the example below:
<section className="someclassname"> <div className="block-1"> ... </div> </section>
It does not work with below syntax:
section.someclassname { .block-1 { ... } }
But it works with below syntax ONLY:
.someclassname { .block-1 { ... } }
Only the "someclassname" in HTML is obfuscated but not in CSS. It remained section.someclassname{.block-1{...
If works fine if I took out "section." in the CSS.
Same cases for other semantic prefixes, e.g. div, button
div.name { .style-1 { } }
Thank you.
Can I have ur conversion table, it/they should be under the <root>/next-css-obfuscator/
<root>/next-css-obfuscator/
@Avishake2017 STOP spreading malware
@Gaurav9812 STOP spreading malware
Please open a new issue if you reencounter it.
See the example below:
It does not work with below syntax:
But it works with below syntax ONLY:
Only the "someclassname" in HTML is obfuscated but not in CSS. It remained section.someclassname{.block-1{...
If works fine if I took out "section." in the CSS.
Same cases for other semantic prefixes, e.g. div, button
Thank you.