Search code examples
sasswebstormcreate-react-app

Unknown pseudo selector 'export' in WebStorm


I'm developing a standard create-react-app-based webapp using WebStorm as an IDE. For this code:

$colors: ( 'primary': #000, 'error': #acda5a);
:export {
  @each $key,
  $value in $colors {
    #{unquote($key)}: $value;
  }
}

I'm getting the error Unknown pseudo selector 'export' -- any idea why?


Solution

  • Exporting sass variables with the webpack :export directive is not yet supported, please follow WEB-41662 for updates