If this CSS is input, lightningcss errors with the following message:
@import rules must precede all rules aside from @charset and @layer statements
This message is true, but doesn't apply to this input. @import does precede all other statements aside from @layer.
In this case, I think the error message needs to be something like "@import must be consecutive".
The following CSS is invalid as the
@import
is not consecutive.Reproduction
If this CSS is input, lightningcss errors with the following message:
This message is true, but doesn't apply to this input.
@import
does precede all other statements aside from@layer
. In this case, I think the error message needs to be something like "@import must be consecutive".