123456789101112131415161718192021222324 |
- // https://github.com/michael-ciniawsky/postcss-load-config
- module.exports = {
- "plugins": {
- autoprefixer: {},
- "postcss-aspect-ratio-mini": {},
- "postcss-write-svg": {
- utf8: false
- },
- "postcss-px-to-viewport": {
- viewportWidth: 750/2,
- viewportHeight: 1334/2,
- unitPrecision: 1,
- viewportUnit: 'vw',
- selectorBlackList: [".ignore", ".hairlines"],
- minPixelValue: 1,
- mediaQuery: false,
- exclude: [/node_modules/]
- },
- "postcss-viewport-units":{
- silence: true
- }
- }
- }
|