We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 280e6d5 commit a4a57f8Copy full SHA for a4a57f8
.github/workflows/deploy-wagmi-to-gh-pages.yml
@@ -56,8 +56,6 @@ jobs:
56
57
- name: Build wagmi integration
58
working-directory: integrations/wagmi
59
- env:
60
- VITE_BASE_PATH: /${{ inputs.destination_dir }}/
61
run: yarn build
62
63
- name: Deploy to `${{ inputs.destination_dir }}` directory of `gh-pages` branch
@@ -68,4 +66,3 @@ jobs:
68
66
personal_token: ${{ secrets.PUBLISH_DOCS_TOKEN }}
69
67
publish_dir: ./integrations/wagmi/dist
70
destination_dir: ${{ inputs.destination_dir }}
71
-
integrations/wagmi/vite.config.ts
@@ -4,5 +4,5 @@ import { defineConfig } from 'vite'
4
// https://vitejs.dev/config/
5
export default defineConfig({
6
plugins: [react()],
7
- base: process.env.VITE_BASE_PATH || '/',
+ base: './',
8
})
0 commit comments