remove existing radar and decouple everything

This commit is contained in:
Bastian Ike
2021-01-08 13:29:24 +01:00
committed by Bastian
parent 2134a6d62d
commit dd8054d1be
238 changed files with 2140 additions and 2742 deletions

View File

@@ -1,19 +0,0 @@
const postcssEasyImport = require('postcss-easy-import');
const postcssNested = require('postcss-nested');
const postcssCustomMedia = require('postcss-custom-media');
const postcssCssVariables = require('postcss-css-variables');
const postcssMqPacker = require('css-mqpacker');
const postcssAutoprefixer = require('autoprefixer');
module.exports = {
plugins: [
postcssEasyImport(),
postcssNested(),
postcssCustomMedia(),
postcssCssVariables(),
postcssMqPacker(),
postcssAutoprefixer({
browsers: '> 5%',
}),
],
};