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]