import { createRouter, createWebHashHistory } from 'vue-router' import HomeView from '../views/HomeView.vue' // import store from '@/store/index.js' const routes = [ { path: '/', name: 'HomeView', component: HomeView, }, ] const router = createRouter({ history: createWebHashHistory(), routes }) router.beforeEach((to, from) => { // 生产环境下强制每次都从首页进入 if (process.env.NODE_ENV === 'production' && !from.name && to.name !== 'HomeView') { return '/' } }) export default router