Live Reload Loop Issue with Quinoa in a Monorepo Project #871
haikalrios
started this conversation in
General
Replies: 1 comment 7 replies
-
|
Your proposal sounds reasonable to me to try and ignore that folder from Live Reload. Let me see if it's possible as the whole folder is marked for live reload I believe. So you need a sub folder ignored of a parent folder than is being monitored. |
Beta Was this translation helpful? Give feedback.
7 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.
-
We are facing a Live Reload infinite loop behavior when using Quarkus + Quinoa in a project structured as a monorepo.
Summary of the setup:
src/main/webui, with multiple packages insidepackages/*.packages/application).build/ordist/folder located within the monorepo structure (src/main/webui/packages/*) .quarkus.quinoa.ui-dirto the root of the front-end (src/main/webui) andquarkus.quinoa.build-dirto the location where Vite outputs the build.Observed problem:
quarkus.quinoa.build-dirproperly configured, Quinoa does not seem to automatically ignore this folder during Live Reload monitoring in dev mode.build/), Quinoa detects changes — causing an infinite reload loop.ui-dir, but deeper inside the structure (packages/application/build).vite.config.js) defines theoutDir, but it is independent of Quinoa’s configuration. It appears that Quinoa does not cross-reference this information when determining which directories to watch.Main questions:
quarkus.quinoa.build-dirinto account when monitoring files for Live Reload in dev mode?ui-dir) to avoid Live Reload loops when local builds are present?packages/*/build, is there any official recommendation or best practice to prevent this issue without needing to restructure the project?Beta Was this translation helpful? Give feedback.
All reactions