We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Problem
The out_dir in Dioxus.toml seems to be ignored when building a web app. The build is always output at target/dx/PROJECT_NAME/release/web/public.
out_dir
target/dx/PROJECT_NAME/release/web/public
I believe this is a regression in 0.6.0 since alpha-4.
Steps To Reproduce
Steps to reproduce the behavior:
dx new dxtest
out_dir = "dist"
[application]
dx build --release
Gives:
1.466s INFO Build completed successfully! 🚀 path=".../target/dx/dxtest/release/web/public"
Expected behavior
The release build is copied to out_dir.
Environment:
The text was updated successfully, but these errors were encountered:
Hi @richard-viney
I tried attempting this. #3393
Can you review it, please?
Sorry, something went wrong.
Hi! We changed the format for the dioxus build dir and won't support out_dir for dx build.
dx build
However, dx bundle - which runs dx build does respect out_dir in 0.6.2 thanks to #3572.
dx bundle
This should be releasing shortly.
No branches or pull requests
Problem
The
out_dir
in Dioxus.toml seems to be ignored when building a web app. The build is always output attarget/dx/PROJECT_NAME/release/web/public
.I believe this is a regression in 0.6.0 since alpha-4.
Steps To Reproduce
Steps to reproduce the behavior:
dx new dxtest
out_dir = "dist"
to Dioxus.toml under[application]
dx build --release
Gives:
1.466s INFO Build completed successfully! 🚀 path=".../target/dx/dxtest/release/web/public"
Expected behavior
The release build is copied to
out_dir
.Environment:
The text was updated successfully, but these errors were encountered: