fix: 修复扫一扫登录
Some checks failed
构建并部署前端到生产环境 / build-and-deploy (push) Failing after 8s

This commit is contained in:
sexygoat
2026-04-17 14:25:42 +08:00
parent 40b8f76eef
commit 404daa4b6d
2 changed files with 11 additions and 1 deletions

View File

@@ -13,7 +13,7 @@
*/
/* 颜色变量 */
@import 'uview-plus/theme.scss';
@import '~uview-plus/theme.scss';
/* 行为相关颜色 */
$uni-color-primary: #007aff;
$uni-color-success: #4cd964;

View File

@@ -3,4 +3,14 @@ import uni from '@dcloudio/vite-plugin-uni'
export default defineConfig({
plugins: [uni()],
css: {
preprocessorOptions: {
scss: {
// 使用传统编译器以保证兼容性
api: 'legacy',
// 添加 node_modules 到导入路径
silenceDeprecations: ['legacy-js-api']
}
}
}
})