File size: 323 Bytes
d15ea6f
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// PostCSS config enabling Custom Media Queries
// Allows usage of: @media (--bp-content-collapse) { ... }

import postcssCustomMedia from 'postcss-custom-media';
import postcssPresetEnv from 'postcss-preset-env';

export default {
  plugins: [
    postcssCustomMedia(),
    postcssPresetEnv({
      stage: 0
    })
  ]
};