1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
| css: { loaderOptions: { postcss: { plugins: [ require('postcss-px-to-viewport')({ unitToConvert: 'px', viewportWidth: 375, viewportHeight: 667, unitPrecision: 5, propList: ['*'], viewportUnit: 'vw', fontViewportUnit: 'vw', selectorBlackList: ["ignore", "tab-bar", "tab-bar-item"], minPixelValue: 1, mediaQuery: false, replace: true, exclude: /node_modules/, include: undefined, landscape: false, landscapeUnit: 'vw', landscapeWidth: 568, }) ] } } }
|