diff options
| author | XhmikosR <[email protected]> | 2020-11-19 15:55:32 +0200 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2020-12-04 07:52:03 +0200 |
| commit | eb618393e3509d850ed15c47ff78757afa2d5fce (patch) | |
| tree | 9f6c9828c172ec41a20ddb3b5269fff1161d3ac2 /build/postcss.config.js | |
| parent | edfa10344440d0164167a04afbaa4f2d08cf88c5 (diff) | |
| download | bootstrap-eb618393e3509d850ed15c47ff78757afa2d5fce.tar.xz bootstrap-eb618393e3509d850ed15c47ff78757afa2d5fce.zip | |
Move rtlcss to postcss.config.js
Diffstat (limited to 'build/postcss.config.js')
| -rw-r--r-- | build/postcss.config.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/build/postcss.config.js b/build/postcss.config.js index ef416258f..b179a0e77 100644 --- a/build/postcss.config.js +++ b/build/postcss.config.js @@ -12,7 +12,8 @@ module.exports = ctx => { plugins: { autoprefixer: { cascade: false - } + }, + rtlcss: ctx.env === 'RTL' ? {} : false } } } |
