We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ef097b commit be8edeeCopy full SHA for be8edee
.github/workflows/deploy.yml
@@ -41,7 +41,7 @@ jobs:
41
- name: Upload artifact
42
uses: actions/upload-pages-artifact@v3
43
with:
44
- path: './build'
+ path: './dist'
45
retention-days: 1
46
47
- name: Deploy to GitHub Pages
vite.config.js
@@ -4,8 +4,9 @@ import react from '@vitejs/plugin-react'
4
import tailwindcss from '@tailwindcss/vite'
5
6
export default defineConfig({
7
- plugins: [
8
- react(),
9
- tailwindcss(),
10
- ],
+ base: '/deep-focus-trace/',
+ plugins: [
+ react(),
+ tailwindcss(),
11
+ ],
12
})
0 commit comments