Quinoa: Frontend works in dev mode but not accessible in native image #50832
-
|
Environment:
The frontend files are successfully built to |
Beta Was this translation helpful? Give feedback.
Answered by
melloware
Nov 4, 2025
Replies: 1 comment 3 replies
-
|
cc @ia3andy |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@Irreplaceable11 a couple of questions...
You are using Vite why are you using
quarkus.quinoa.build-dir=buildwhen Quinoa detects Vite automatically and knows its output dir isdist?when running quarkus:dev when you hit
localhost:5173that is just your NPM app, you need to make sure its working through Quinoa atlocahost:8080as well as that is where the app is served through Quinoa. When running in Native Mode it will be served at 8080 as threre is no 5173 at that point. So until it works atlocalhost:8080in Dev mode do not bother proceeding to Native Mode yet