官方创新很好,又为我们创造了一个尺寸单位,upx,但是考虑到项目迁移和开发通用,我决定还是使用px配合flexible实现适配,确保项目可以轻松移植到uni框架,需要改动@dcloudio/vue-cli-plugin-uni/packages/postcss文件,在postcss.config.js文件中引入的,保证我们小写px自动转换rem,大写的不转换,默认采用750px的设计稿,所以其...
Syntax Error:Error:PostCSS plugin postcss-uniapp-plugin requires PostCSS8 根据官方提供的解释,命令行更新的过程中,有可能直接将postcss更新到8.x,因此可以尝试锁定postcss版本在7.x npm i -D postcss@7 果然,大功告成!
loader: 'postcss-loader', options: { sourceMap: false, parser: require('postcss-comment'), plugins: [ require('postcss-import')({ resolve (id, basedir, importOptions) { if (id.startsWith('~@/')) { return path.resolve(process.env.UNI_INPUT_DIR, id.substr(3)) } else if (id.starts...
1.1 安装第三方插件 postcss-px-to-viewport npm install postcss-px-to-viewport --save-dev 1. 1.2 项目根目录创建postcss.config.js,并写入配置 // postcss.config.js const path = require('path') module.exports = { parser: 'postcss-comment', plugins: { 'postcss-import': { resolve(id, basedir...
Projects Security Insights Additional navigation options New issue Closed sufuwangopened this issueApr 10, 2023· 1 comment Closed opened this issueApr 10, 2023· 1 comment 报错如下 Error: PostCSS plugin postcss-uniapp-plugin requires PostCSS 8. ...
1.安装第三方插件postcss-px-to-viewport npm install postcss-px-to-viewport --save-dev 2.项目根目录创建postcss.config.js,并写入配置: // postcss.config.jsconstpath=require('path')module.exports={parser:'postcss-comment',plugins:{'postcss-import':{resolve(id,basedir,importOptions){if(id.starts...
yarn add postcss 启动项目,问题解决了。 记录二 解决 project.config.json增加: "miniprogramRoot": "dist/dev/mp-weixin/", 增加后,项目启动成功。 记录三 微信开发工具,小程序请求接口报错: errMsg: "request:fail invalid url "/m-staff-center/api/v1/login/getCurrentAppList"" ...
postcss: { plugins: [ autoprefixer({ // 指定目标浏览器 overrideBrowserslist: ['> 1%', 'last 2 versions'], }), ], }, }, resolve: { alias: { '@': path.join(process.cwd(), './src'), }, }, server: { host: '0.0.0.0', ...
{"name" : "小程序名称","appid" : "__UNI__9329D99","description" : "","versionName" : "1.0.0","versionCode" : "100","transformPx" : false,"mp-weixin" : {"appid": "wxe6fc48a27f7591b1","setting" : {"urlCheck" : false,"es6" : true,"postcss" : true,"minified" : true...
uni-app-template ├─.editorconfig // 编辑器配置 ├─.eslintignore // eslint忽略文件 ├─.eslintrc.js // eslint配置 ├─.gitignore // git忽略文件 ├─LICENSE ├─README.md // 说明文档 ├─babel.config.js // babel配置 ├─package.json // 包管理 ├─postcss.config.js // postcss配...