Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在努力在 redash 中自定义可视化。每当我进行更改时,我都不会立即看到更改。相反,我将不得不再次执行npm run build和构建模块。该构建步骤需要花费大量时间。是否有任何解决此问题的方法,以便我可以立即看到更改并避免浪费时间?提前致谢。
npm run build
您可以npm run watch改用,它会在您更改时逐步重建。您也可以使用npm run start它来自动重新加载,但是您需要通过localhost:8080.
npm run watch
npm run start
localhost:8080