v0.5.0 - SEO friendly update

- sitemap.xml
- robots.txt
- meta-tags
This commit is contained in:
Alexey Ustinov
2026-06-07 21:45:58 +03:00
parent 4e24405d11
commit a52fa0f28e
6 changed files with 741 additions and 5 deletions
+3
View File
@@ -1,10 +1,13 @@
import { createApp } from 'vue'
import App from './App.vue'
import router from './router'
import { createHead } from '@vueuse/head'
import './assets/styles.css'
const app = createApp(App)
const head = createHead()
app.use(router)
app.use(head)
app.mount('#app')