Replies: 1 comment
-
I am approaching that with CI/CD pipelines and several |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Let's say I'm working on a project that will be deployed to
https://example.com/subpath
. If I setweb.app.base_path
inDioxus.toml
tosubpath
, then that breaksdx serve
(since it tries to load assets from/subpath
, which doesn't exist under the development server). If I don't setbase_path
, then the release build breaks since it's trying to load assets from/
(which has a landing page, not the app's assets). Is it possible to setbase_path
separately for different profiles, or ad-hoc for a given build, without editingDioxus.toml
each time?Beta Was this translation helpful? Give feedback.
All reactions