From 3e38b76f262197f81f6b36c8209f0a8431b1f4e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20P=C3=A9rex?= Date: Fri, 20 Jun 2025 20:41:06 +0100 Subject: [PATCH] chore: update packages and flowbite version --- index.html | 2 +- public/config.yaml | 2 +- src/modules/i18n.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index cfdfd91..28d6624 100644 --- a/index.html +++ b/index.html @@ -6,7 +6,7 @@ CV Gen - +
diff --git a/public/config.yaml b/public/config.yaml index 9265335..d9c3c10 100644 --- a/public/config.yaml +++ b/public/config.yaml @@ -12,7 +12,7 @@ UUIDNONE: none TKNLIMIT: 20 isDevelmode: true URLS: - root: http://localhost:8080 + root: http://localhost:5555 #data: /assets/data # DATA_URL: ${DATA_PATH}/dist/info.json data: /getdata diff --git a/src/modules/i18n.ts b/src/modules/i18n.ts index f7528a1..dabfa22 100644 --- a/src/modules/i18n.ts +++ b/src/modules/i18n.ts @@ -5,7 +5,7 @@ import { createI18n } from 'vue-i18n' // https://vitejs.dev/guide/features.html#glob-import export const messages = Object.fromEntries( Object.entries( - import.meta.globEager('../../locales/*.y(a)?ml')) + import.meta.glob('./../../locales/*.y(a)?ml', { eager: true })) .map(([key, value]) => { const yaml = key.endsWith('.yaml') return [key.slice(14, yaml ? -5 : -4), value.default]