Upgrade to Laravel 10, Vite 5+

This commit is contained in:
Darko Gjorgjijoski
2024-01-28 17:17:32 +01:00
parent 35e897a731
commit cd9df54c5b
43 changed files with 3428 additions and 3175 deletions

View File

@@ -94,7 +94,7 @@ const shareableLink = computed(() => {
})
function getLogo() {
const imgUrl = new URL('/img/logo-gray.png', import.meta.url)
const imgUrl = new URL('$images/logo-gray.png', import.meta.url)
return imgUrl
}

View File

@@ -562,7 +562,7 @@ function onFileRemove(index) {
}
function getDefaultAvatar() {
const imgUrl = new URL('/img/default-avatar.jpg', import.meta.url)
const imgUrl = new URL('$images/default-avatar.jpg', import.meta.url)
return imgUrl
}