h5 星游企业版

This commit is contained in:
caolc
2022-08-08 09:32:04 +08:00
commit f6cef4b439
61 changed files with 17327 additions and 0 deletions

23
postcss.config.js Normal file
View File

@@ -0,0 +1,23 @@
module.exports = {
//...其他配置
css: {
loaderOptions: {
postcss: {
plugins: [
require('postcss-pxtorem')({
rootValue: 75,
propList: ['*'],
})
]
}
}
},
"plugins": {
'postcss-pxtorem': {
rootValue: 75,
propList: ['*'],
exclude: /node_modules/i // 不包含
}
}
}