-
How to achieve |
Beta Was this translation helpful? Give feedback.
Answered by
nickjj
Oct 21, 2022
Replies: 1 comment
-
Hi, The project is already set up to watch in development. The esbuild You just need to run the app in development mode which it does by default in the .env file with: export FLASK_DEBUG=true
export NODE_ENV=development |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
cris-m
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
The project is already set up to watch in development. The esbuild
watch
option keeps the container running and watches files for changes, then it immediately rebuilds the new JS on change. Tailwind works the same with the--watch
flag for CSS.You just need to run the app in development mode which it does by default in the .env file with: