From fbaa3dbbeb2c57fe89b8b98a42423c24207f33f9 Mon Sep 17 00:00:00 2001 From: ghostubborn Date: Wed, 1 Apr 2026 15:45:43 +0800 Subject: [PATCH] fix(i18n): fix curly quotes and missing @ alias in vite config --- frontend/src/components/Step2EnvSetup.vue | 2 +- frontend/vite.config.js | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/components/Step2EnvSetup.vue b/frontend/src/components/Step2EnvSetup.vue index b10adb4..0d84a6f 100644 --- a/frontend/src/components/Step2EnvSetup.vue +++ b/frontend/src/components/Step2EnvSetup.vue @@ -501,7 +501,7 @@
-

{{ $t(‘step2.customTip’) }} ➝

+

{{ $t('step2.customTip') }} ➝

diff --git a/frontend/vite.config.js b/frontend/vite.config.js index f88fdea..8f1e4c1 100644 --- a/frontend/vite.config.js +++ b/frontend/vite.config.js @@ -7,6 +7,7 @@ export default defineConfig({ plugins: [vue()], resolve: { alias: { + '@': path.resolve(__dirname, 'src'), '@locales': path.resolve(__dirname, '../locales') } },