Revision 4f8ec5db0257895613d8c5564c565fd97ce3f7eb authored by Julien Déramond on 13 October 2023, 13:50:27 UTC, committed by Julien Déramond on 13 October 2023, 13:50:27 UTC
1 parent ecab154
Raw File
postcss.config.mjs
const mapConfig = {
  inline: false,
  annotation: true,
  sourcesContent: true
}

export default context => {
  return {
    map: context.file.dirname.includes('examples') ? false : mapConfig,
    plugins: {
      autoprefixer: {
        cascade: false
      },
      rtlcss: context.env === 'RTL'
    }
  }
}
back to top