I'm trying to use the plugin, but I getting info message:
bundles ./Controls/Navigation/navigation.scss → wwwroot/Controls/Navigation/navigation.css...
(!) Generated an empty chunk
It will generate an empty navigation.css file.
rollup.config.js
[
scss({
outputStyle: minify ? 'compressed' : 'expanded',
sourceMap: !minify,
}),
]
navigation.scss
nav {
background-color: var(--color-primary);
}
If I add processor. It write correct css to console.
processor: (css, map) => {
console.log(map);
console.log(css);
return {};
}
So question is why is generated file empty?

I'm trying to use the plugin, but I getting info message:
It will generate an empty navigation.css file.
rollup.config.js
navigation.scss
If I add processor. It write correct css to console.
So question is why is generated file empty?