vue-htmlize
Make working OG Tags and SEO in pure Vue projects.
Improve your SEO in SPA apps!
Get started
Install
npm i vue-htmlize
Config in vue
In main.ts or main.js just import vue-htmlize
import App from './App.vue'
import router from './router'
import htmlize from 'vue-htmlize'
htmlize.byRouter(router)
const app = createApp(App)
app.use(router)
app.mount('#app')
Options
Few options to setup it for your project
htmlize.config.clean = true
htmlize.config.ignore = [ '.htaccess', 'favicon.ico', 'img' ]
htmlize.config.dist = "public"
htmlize.config.template = "index.html"
Contributing
Feel free to contribute at GitHub