chore(miniprogram): stores 层启用 @/ 路径别名 + webpack alias 配置
Some checks failed
CI / rust-check (push) Has been cancelled
CI / rust-test (push) Has been cancelled
CI / frontend-build (push) Has been cancelled
CI / security-audit (push) Has been cancelled

This commit is contained in:
iven
2026-04-24 12:30:02 +08:00
parent 54a0e393ac
commit 6bb3babcb9
3 changed files with 6 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
import { create } from 'zustand';
import Taro from '@tarojs/taro';
import * as authApi from '../services/auth';
import * as authApi from '@/services/auth';
interface BindPhoneResp {
access_token: string;

View File

@@ -1,5 +1,5 @@
import { create } from 'zustand';
import * as healthApi from '../services/health';
import * as healthApi from '@/services/health';
interface HealthState {
todaySummary: healthApi.TodaySummary | null;