i inject ${this.Classes} into my html tag in render function. when i start it with rollup, it works as expected. but when i try to build it with rollup build, it gives error: " html-minifier deleted something major, cannot proceed." and cant build.
render() {
let dis=this;
return html`
<link rel="stylesheet" href="../src/lib/jquery/dist/selectize/selectize.default.css" />
dis.Style();
<select id="select"></select>
`;
}
Style() {
let dis = this;
return html`
<style type="text/css">
.selectize-input {
padding: 0!important;
border: none;
border-radius: none;
background:white!important;
box-shadow:unset!important;
-webkit-box-shadow:unset!important;
}
${dis.Klasslar}
</style>
`;
}