From 5a023651b5392bc4e14f0464dad928e74ef3935b Mon Sep 17 00:00:00 2001 From: sasha-astiadi Date: Fri, 7 Nov 2025 17:10:52 +0100 Subject: [PATCH] fix: switch from BrowserRouter to HashRouter for static hosting compatibility --- src/App.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 46bb60e..a2e1173 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,4 +1,4 @@ -import { BrowserRouter, Routes, Route } from 'react-router-dom'; +import { HashRouter, Routes, Route } from 'react-router-dom'; import { Layout } from './components/Layout'; import { lazy, Suspense } from 'react'; @@ -13,7 +13,7 @@ const GpuPage = lazy(() => import('./pages/gpu/GpuPage')); function App() { return ( - + Loading...}> }> @@ -28,7 +28,7 @@ function App() { - + ) }