Skip to content
This repository has been archived by the owner on Oct 1, 2024. It is now read-only.

Commit

Permalink
adjust vite config, hopefully serve at corret path; fix link to logo
Browse files Browse the repository at this point in the history
  • Loading branch information
mapachurro committed May 30, 2024
1 parent 1469833 commit 2846b44
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Navbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const Navbar = () => {
return (
<nav style={styles.navbar}>
<Link to="/" style={styles.logo}>
<img src="./public/education-dao-circle.png" alt="Logo" style={styles.logoImage} />
<img src="/education-dao-circle.png" alt="Logo" style={styles.logoImage} />
Education DAO Glossary
</Link>
</nav>
Expand Down
2 changes: 1 addition & 1 deletion vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';

export default defineConfig({
base: '/web3-glossary-website/', // Adjust this if your repository name is different
base: '/', // Adjust this if your repository name is different
plugins: [react()],
});

0 comments on commit 2846b44

Please sign in to comment.