You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
smart_campus_uni/postcss.config.js

28 lines
948 B
JavaScript

6 months ago
const path = require('path')
console.log('enter postcss')
const pxtorpx = require('postcss-pxtorpx-pro')
const postcssImport = require('postcss-import')
const autoprefixer = require('autoprefixer')
module.exports = {
// parser: require('postcss-comment'),
plugins: [
pxtorpx(),
postcssImport({
resolve(id, basedir, importOptions) {
if (id.startsWith('~@/')) {
return path.resolve(process.env.UNI_INPUT_DIR, id.substr(3))
} else if (id.startsWith('@/')) {
return path.resolve(process.env.UNI_INPUT_DIR, id.substr(2))
} else if (id.startsWith('/') && !id.startsWith('//')) {
return path.resolve(process.env.UNI_INPUT_DIR, id.substr(1))
}
return id
}
}),
autoprefixer({
overrideBrowserslist: ["Android >= 4", "ios >= 8"],
remove: process.env.UNI_PLATFORM !== 'h5'
}),
// require('@dcloudio/vue-cli-plugin-uni/packages/postcss')
],
}