You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
but I can't get the CSS to be stored because rollup does tryParse :
css/index.css → foo.css...
css/index.css (1:80)
[!] RollupError: Unexpected token (Note that you need plugins to import files that are not JavaScript)
html{-webkit-tex...
*/
I tried to add a dummy plugin to disable this:
```js
{
transform(code, _id) {
return {ast: code, code, map: null, moduleSideEffects: false};
}
}
but still doesn't keep rollup this.hasEffects(createHasEffectsContext())); from running and triggering an error.
How to achieve this?
The text was updated successfully, but these errors were encountered:
I'd like to preprocess CSS with rollup + this plugin with no javascript involved (SASS in, CSS out).
I tried any possible option to entirely disable output postprocessing:
but I can't get the CSS to be stored because rollup does
tryParse
:but still doesn't keep rollup
this.hasEffects(createHasEffectsContext()));
from running and triggering an error.How to achieve this?
The text was updated successfully, but these errors were encountered: