postcss.config.mjs 234 B

1234567891011121314151617
  1. const mapConfig = {
  2. inline: false,
  3. annotation: true,
  4. sourcesContent: true
  5. }
  6. export default context => {
  7. return {
  8. map: mapConfig,
  9. plugins: {
  10. autoprefixer: {
  11. cascade: false
  12. },
  13. rtlcss: context.env === 'RTL'
  14. }
  15. }
  16. }