Skip to content

Commit

Permalink
Fix path for online deployments
Browse files Browse the repository at this point in the history
  • Loading branch information
qtc-de committed Sep 8, 2023
1 parent f80cb0c commit c7d445d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build-offline-frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ concurrency:
cancel-in-progress: false

jobs:
build-offline:
build-offline-frontend:
runs-on: ubuntu-latest

steps:
Expand All @@ -36,6 +36,7 @@ jobs:
- name: Build Frontend
working-directory: frontend
run: |
sed -i '/base: /s/ \/\// /g' vite.config.js
npm install
npm run build -- --mode offline
Expand Down
2 changes: 1 addition & 1 deletion frontend/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ export default defineConfig({
'@': fileURLToPath(new URL('./src', import.meta.url))
}
},
base: '/rpv-web/'
//base: '/rpv-web/'
})

0 comments on commit c7d445d

Please sign in to comment.