Skip to content

Commit

Permalink
update vite
Browse files Browse the repository at this point in the history
  • Loading branch information
wheattoast11 committed Nov 20, 2024
1 parent f23e20f commit 47adec8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 18
Expand All @@ -25,4 +27,7 @@ jobs:
with:
folder: dist
branch: gh-pages
clean: true
clean: true
clean-exclude: |
.nojekyll
CNAME
2 changes: 1 addition & 1 deletion vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';

export default defineConfig({
base: '/', // Changed from '/wheattoast11.github.io/'
base: '/wheattoast11.github.io/', // Updated to match your repository name
plugins: [react()],
build: {
outDir: 'dist'
Expand Down

0 comments on commit 47adec8

Please sign in to comment.