diff --git a/composables/api.ts b/composables/api.ts index 5128897..22915b6 100644 --- a/composables/api.ts +++ b/composables/api.ts @@ -6,7 +6,6 @@ export function useApiFetch() { const prefix = config.public.apiPrefix const fetchData = (path: string, global = false) => { - console.log(`Fetching data for path: ${path}`); const headers = new Headers() headers.set('Referer', config.public.baseUrl) diff --git a/nuxt.config.ts b/nuxt.config.ts index 29031a2..be8a2f7 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -11,6 +11,9 @@ export default defineNuxtConfig({ htmlAttrs: { lang: 'ru', }, + link: [ + { rel: 'icon', type: 'image/svg+xml', href: '/mdi--bench-back.svg' }, + ] }, }, diff --git a/public/mdi--bench-back.svg b/public/mdi--bench-back.svg new file mode 100644 index 0000000..a2237b6 --- /dev/null +++ b/public/mdi--bench-back.svg @@ -0,0 +1 @@ + \ No newline at end of file