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