mirror of
https://github.com/ArthurDanjou/artsite.git
synced 2026-01-14 15:54:13 +01:00
chore: update nuxt configuration and dependencies
- Added strictMessage option to i18n compilation settings in nuxt.config.ts - Configured prerender settings in nitro for better route handling - Updated dependencies in package.json, including @nuxt/ui and @nuxthub/core - Moved iconify-json packages to dependencies from devDependencies - Added better-sqlite3 to devDependencies - Simplified tsconfig.json to extend from .nuxt/tsconfig.json
This commit is contained in:
@@ -20,7 +20,7 @@ const { t } = useI18n({
|
||||
<h1>{{ t('find') }}</h1>
|
||||
<div class="flex gap-2 flex-wrap">
|
||||
<HomeLink
|
||||
v-for="social in socials.sort((a, b) => a.label.localeCompare(b.label))"
|
||||
v-for="social in [...socials].sort((a, b) => a.label.localeCompare(b.label))"
|
||||
:key="social.label"
|
||||
:href="social.to"
|
||||
:icon="social.icon"
|
||||
|
||||
Reference in New Issue
Block a user