Changes:
All checks were successful
Production PR / QA Tests (pull_request) Successful in 43s

- Added favicon
- Enabled git lfs
- All PNGs in /public folder are now sent to LFS
This commit is contained in:
Liviu Burcusel 2026-01-14 12:36:58 +01:00
parent 7e17984377
commit 72db9f305c
Signed by: liviu
GPG key ID: 6CDB37A4AD2C610C
21 changed files with 102 additions and 0 deletions

View file

@ -19,6 +19,11 @@ export default defineNuxtConfig({
htmlAttrs: {
class: "dark",
},
link: [
{ rel: "icon", type: "image/x-icon", href: "/favicon.ico" },
{ rel: "icon", type: "image/png", href: "/favicon.png" },
{ rel: "icon", type: "image/svg+xml", href: "/favicon.svg" },
],
},
},
devtools: { enabled: true },