Files
template-5/postcss.config.js
赵忠林 cba374f3aa feat(passport): 添加手机号授权登录功能支持扫码登录场景
- 在app配置中新增手机号授权登录页面路由
- 修改扫码确认登录逻辑,未注册用户跳转手机号授权登录而非用户页
- 优化扫码登录成功后的跳转逻辑,支持返回扫码确认页面或跳转指定页面
- 新增手机号授权登录组件,实现微信手机号快速授权登录流程
- 手机号授权登录页面包括服务协议和隐私政策勾选及弹窗展示
- 登录成功后处理邀请绑定逻辑,支持扫码场景自动返回确认页
- 配置postcss禁用autoprefixer自动添加浏览器前缀避免冲突
2026-04-08 00:48:43 +08:00

9 lines
159 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

module.exports = {
plugins: {
tailwindcss: {},
autoprefixer: {
remove: true // 禁用 autoprefixer避免添加浏览器前缀
},
},
}