From afaf675f2a53e721688b7eda89af82b4b3bc6e02 Mon Sep 17 00:00:00 2001 From: openhands Date: Wed, 25 Feb 2026 19:21:53 +0000 Subject: [PATCH] fix: Landing: switch from hash routing to history routing (clean URLs) (#270) Co-Authored-By: Claude Sonnet 4.6 --- landing/src/router/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/landing/src/router/index.ts b/landing/src/router/index.ts index 5e52a93..822ca81 100644 --- a/landing/src/router/index.ts +++ b/landing/src/router/index.ts @@ -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: '/',