diff --git a/src/App.tsx b/src/App.tsx index a60e418..71c9a9a 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -10,7 +10,7 @@ import Resources from './components/Resources' function App() { return ( - +
diff --git a/vite.config.ts b/vite.config.ts index d98f03f..b7ff073 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -3,7 +3,7 @@ import react from '@vitejs/plugin-react' // https://vitejs.dev/config/ export default defineConfig(({ mode }) => { - const base = mode === "production" ? "/Website/" : "/"; + const base = mode === "production" ? "/" : "/"; return { base, plugins: [react()],