I am working on customizing a visualization in redash. Whenever I do a change I don’t see the change immediately. Instead I’ll have to execute npm run build
and build the modules again. That building step is consuming a lot of time. Is there any workaround for this issue so that I can see the changes right away, and avoid wasting time?
This site is in read only mode. Please continue to browse, but replying, likes,
and other actions are disabled for now.
Hi! Just use npm run watch
- it will automatically rebuild bundle each time you modify files. Then just refresh page in browser.
1 Like