summaryrefslogtreecommitdiffstats
path: root/build/postcss.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'build/postcss.config.js')
-rw-r--r--build/postcss.config.js19
1 files changed, 0 insertions, 19 deletions
diff --git a/build/postcss.config.js b/build/postcss.config.js
deleted file mode 100644
index 7f8186d..0000000
--- a/build/postcss.config.js
+++ /dev/null
@@ -1,19 +0,0 @@
-'use strict'
-
-const mapConfig = {
- inline: false,
- annotation: true,
- sourcesContent: true
-}
-
-module.exports = context => {
- return {
- map: context.file.dirname.includes('examples') ? false : mapConfig,
- plugins: {
- autoprefixer: {
- cascade: false
- },
- rtlcss: context.env === 'RTL'
- }
- }
-}