This commit is contained in:
2025-12-13 09:18:08 +08:00
parent 7807f4b3e4
commit 0042a0220f
79 changed files with 30697 additions and 2 deletions

13
postcss.config.js Normal file
View File

@@ -0,0 +1,13 @@
const path = require('path')
module.exports = {
parser: require('postcss-comment'),
plugins: [
require('autoprefixer')({
overrideBrowserslist: [
'Android >= 4',
'ios >= 8'
]
}),
require('@dcloudio/vue-cli-plugin-uni/packages/postcss')
]
}