aboutsummaryrefslogtreecommitdiff
path: root/build/postcss.config.js
diff options
context:
space:
mode:
authorXhmikosR <[email protected]>2023-08-06 07:37:24 +0300
committerGitHub <[email protected]>2023-08-06 07:37:24 +0300
commit56664e0caa09fe49c6a17ffd9c21909b2380a8a8 (patch)
tree3280d547c26dd94532703c7e634add9c5d845622 /build/postcss.config.js
parent0fe3dd93f26187cf7f6fd8df38fc3e9348ca2fd0 (diff)
downloadbootstrap-56664e0caa09fe49c6a17ffd9c21909b2380a8a8.tar.xz
bootstrap-56664e0caa09fe49c6a17ffd9c21909b2380a8a8.zip
Convert build scripts to ESM (#38984)
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 7f8186d10..000000000
--- 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'
- }
- }
-}