import { createRouter, createWebHashHistory } from 'vue-router' import Home from './page/Home.vue' import About from './page/About.vue' // const APP_BASE_URL = '/' const routes = [ { path: '/', name: 'home', component: Home, meta: { title: 'Generator - OG:IMAGE' } }, { path: '/about', name: 'About', component: About, meta: { title: 'About' } }, ]; const router = createRouter({ history: createWebHashHistory(), routes, }); export default router;