postcss.config.js 219 B

12345678910111213
  1. var postcssFocusWithin = require('postcss-focus-within');
  2. module.exports = {
  3. plugins: {
  4. autoprefixer: {}
  5. }
  6. };
  7. module.exports = {
  8. plugins: [
  9. postcssFocusWithin(/* pluginOptions */)
  10. ]
  11. };