Skip to content

Commit 6f499fd

Browse files
committed
Refactor deployment workflow to remove unnecessary base path configuration for QR Code app build process and update Dioxus configuration for local development.
1 parent f48ba71 commit 6f499fd

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/deploy-pages.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Build with Dioxus
3030
run: |
3131
cd qrcode-app
32-
dx bundle -r --package qrcode-app --base-path ""
32+
dx bundle -r --package qrcode-app
3333
3434
- name: Upload artifact
3535
uses: actions/upload-pages-artifact@v3

qrcode-app/Dioxus.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ out_dir = "dist"
44

55
[web.app]
66
title = "QR Code Generator"
7-
# base_path = "qrcode-generator" # Uncommented for local dev, set via CLI for production
7+
base_path = "" # Uncommented for local dev, set via CLI for production
88

99
[web.watcher]
1010
reload_html = true

0 commit comments

Comments
 (0)