fix: Landing: switch from hash routing to history routing (clean URLs) (#270)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
openhands 2026-02-25 19:21:53 +00:00
parent 798382e9bf
commit afaf675f2a

View file

@ -1,9 +1,9 @@
import { createRouter, createWebHashHistory } from 'vue-router';
import { createRouter, createWebHistory } from 'vue-router';
import HomeView from '../views/HomeView.vue';
import HomeViewOffensive from '../views/HomeViewOffensive.vue';
const router = createRouter({
history: createWebHashHistory(import.meta.env.BASE_URL),
history: createWebHistory(import.meta.env.BASE_URL),
routes: [
{
path: '/',