Has anyone seen this error before?
I am attempting to use an internal library that is using css @import statements. However our application will not compile when attempting to use the the component.
Based on the docs, this may be related to either Css Side-Effect Imports (https://remix.run/docs/en/1.16.1/guides/styling#css-side-effect-imports) , or CSS Bundling: (https://remix.run/docs/en/1.16.1/guides/styling#css-bundling) but neither or those seems to have had any effect. I think this may be becasue the @import is in the css file, not importing it into a component.
Is anyone able to offer any guidance on how to get this to compile?
/* Autocomplete.css */
@import '~@namespace/ifl-tokens/build/aurora/css/all.css';
Remix