fix(i18n): fix curly quotes and missing @ alias in vite config

This commit is contained in:
ghostubborn
2026-04-01 15:45:43 +08:00
parent fc47ae81b5
commit fbaa3dbbeb
2 changed files with 2 additions and 1 deletions

View File

@@ -501,7 +501,7 @@
</span>
</div>
<div class="auto-desc">
<p class="highlight-tip" @click="useCustomRounds = true">{{ $t(step2.customTip) }} </p>
<p class="highlight-tip" @click="useCustomRounds = true">{{ $t('step2.customTip') }} </p>
</div>
</div>
</div>

View File

@@ -7,6 +7,7 @@ export default defineConfig({
plugins: [vue()],
resolve: {
alias: {
'@': path.resolve(__dirname, 'src'),
'@locales': path.resolve(__dirname, '../locales')
}
},