chore: update packages and flowbite version

This commit is contained in:
Jesús Pérex 2025-06-20 20:41:06 +01:00
parent 728c38e6fe
commit 3e38b76f26
3 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
<title>CV Gen</title>
<meta name="description" content="CV Gen to generate and publish CVs">
<script src="https://unpkg.com/@themesberg/flowbite@1.1.0/dist/flowbite.bundle.js"></script>
<script src="https://cdn.jsdelivr.net/npm/flowbite@3.1.2/dist/flowbite.min.js"></script>
</head>
<body>
<div id="app"></div>

View File

@ -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

View File

@ -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]