From 31a0f13cb82d7d1fd925eb7dcd6ba884a899b085 Mon Sep 17 00:00:00 2001 From: mapachurro Date: Thu, 30 May 2024 12:14:02 -0400 Subject: [PATCH 1/2] update deploy path --- vite.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()], }); From b4ad2185812d49ccbfe91c564da8f95c3a243e6e Mon Sep 17 00:00:00 2001 From: mapachurro Date: Thu, 30 May 2024 12:16:52 -0400 Subject: [PATCH 2/2] update script --- .github/workflows/gh-pages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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