From e2a46e413a0ab6f4909c580ae5cf766a2c0ff046 Mon Sep 17 00:00:00 2001 From: douboer Date: Sun, 8 Feb 2026 12:08:50 +0800 Subject: [PATCH] update at 2026-02-08 12:08:50 --- .env.production | 9 +++++++++ frontend/src/components/FontSelector.vue | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 .env.production diff --git a/.env.production b/.env.production new file mode 100644 index 0000000..da51fa6 --- /dev/null +++ b/.env.production @@ -0,0 +1,9 @@ +# 生产环境配置,此文件不会被提交到 Git(已在 .gitignore 中) +# Supabase 配置(服务端/脚本使用) +SUPABASE_URL=https://fwwsxicqmsoimyrafyek.supabase.co +SUPABASE_KEY=sb_publishable_FgA0knvKiNMJEv4k-Q1cAA_IqZW0kjn +SUPABASE_SECRET_KEY=sb_secret_8uVHDbhMxE4HOlMBxMWjjw_vsHoZVI8 + +ALIBABA_CLOUD_ACCESS_KEY_ID=LTAI5tDM8CzT8ABCdYKrfzH8 +ALIBABA_CLOUD_ACCESS_KEY_SECRET=hCejmpYoaCGehw2I4jcJo2qd2TwB62 + diff --git a/frontend/src/components/FontSelector.vue b/frontend/src/components/FontSelector.vue index 7697851..7af46e0 100644 --- a/frontend/src/components/FontSelector.vue +++ b/frontend/src/components/FontSelector.vue @@ -11,7 +11,7 @@ const fontTree = computed(() => fontStore.fontTree) const normalizedSearchKeyword = computed(() => searchKeyword.value.trim().toLowerCase()) const isSelectedOnlyMode = computed(() => { const keyword = normalizedSearchKeyword.value - return keyword.includes('选中') || keyword.includes('选择') || keyword.includes('已选') + return keyword.includes('选中') || keyword.includes('选择') || keyword.includes('已选') || keyword.includes('xuan') }) const normalizedNameSearchKeyword = computed(() => { return isSelectedOnlyMode.value ? '' : normalizedSearchKeyword.value