aboutsummaryrefslogtreecommitdiff
path: root/core/search-component/postcss.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'core/search-component/postcss.config.js')
-rw-r--r--core/search-component/postcss.config.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/core/search-component/postcss.config.js b/core/search-component/postcss.config.js
new file mode 100644
index 00000000..ce65774e
--- /dev/null
+++ b/core/search-component/postcss.config.js
@@ -0,0 +1,17 @@
+module.exports = () => ({
+ plugins: [
+ require('postcss-import'),
+ require('postcss-preset-env')({
+ features: {
+ stage: 3, // See https://cssdb.org/#staging-process
+ importFrom: require.resolve('@jetbrains/ring-ui/components/global/variables.css'),
+ features: {
+ 'nesting-rules': true,
+ 'custom-properties': {
+ preserve: true
+ }
+ }
+ }
+ })
+ ]
+});