Revision bb10c996d42610489534ccf532428419d447d3da authored by Mahmut YILDIRIM on 13 September 2023, 06:45:40 UTC, committed by GitHub on 13 September 2023, 06:45:40 UTC
Co-authored-by: louismaxime.piton <louismaxime.piton@orange.com>
1 parent 86672f4
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