diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index f72daa8..51f4805 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -20,7 +20,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v4 with: - node-version: '21' # Ensure this matches your project requirements + node-version: '21' - name: Cache dependencies uses: actions/cache@v4 diff --git a/vite.config.js b/vite.config.js index 8b3c2c9..1bd62f8 100644 --- a/vite.config.js +++ b/vite.config.js @@ -2,6 +2,6 @@ import { defineConfig } from 'vite'; import react from '@vitejs/plugin-react'; export default defineConfig({ - base: '/', // Adjust this if your repository name is different + base: '/web3-glossary-website', // Adjust this if your repository name is different plugins: [react()], });