Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2020-11-19 16:55:32 +0300
committerXhmikosR <xhmikosr@gmail.com>2020-12-04 08:52:03 +0300
commiteb618393e3509d850ed15c47ff78757afa2d5fce (patch)
tree9f6c9828c172ec41a20ddb3b5269fff1161d3ac2 /build
parentedfa10344440d0164167a04afbaa4f2d08cf88c5 (diff)
Move rtlcss to postcss.config.js
Diffstat (limited to 'build')
-rw-r--r--build/postcss.config.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/build/postcss.config.js b/build/postcss.config.js
index ef416258f7..b179a0e77c 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
}
}
}