Compare commits

..

1 Commits

Author SHA1 Message Date
admin 1c9081842a chore(favicon): 使用预发布环境的图标
Docker Image / Quality and Bundle Budgets (push) Successful in 3s
Docker Image / Build and Push Docker Image (push) Successful in 1m51s
2026-07-20 17:05:04 +08:00
+1 -1
View File
@@ -4,7 +4,7 @@ import { apiEnvelope } from "../data/common";
import { chatCharactersResponse } from "../data/character";
export async function registerCharacterMocks(page: Page) {
await page.route(/\/api\/characters(?:\?.*)?$/, async (route) => {
await page.route("**/api/characters**", async (route) => {
await route.fulfill({ json: apiEnvelope(chatCharactersResponse) });
});
}