From b614604effda51ca7c76c8901be78ced62b642b2 Mon Sep 17 00:00:00 2001 From: Marcin Aman Date: Thu, 28 May 2020 16:17:13 +0200 Subject: Update TS migration to current dev, move to a common package, rename to frontend --- plugins/base/frontend/postcss.config.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 plugins/base/frontend/postcss.config.js (limited to 'plugins/base/frontend/postcss.config.js') diff --git a/plugins/base/frontend/postcss.config.js b/plugins/base/frontend/postcss.config.js new file mode 100644 index 00000000..66c94ee0 --- /dev/null +++ b/plugins/base/frontend/postcss.config.js @@ -0,0 +1,16 @@ +module.exports = () => ({ + plugins: [ + require('postcss-import'), + require('postcss-preset-env')({ + features: { + stage: 3, // See https://cssdb.org/#staging-process + features: { + 'nesting-rules': true, + 'custom-properties': { + preserve: true + } + } + } + }) + ] +}); -- cgit