Hi, just a simple doubt, if I want to do some cust...
# contributing-to-airbyte
c
Hi, just a simple doubt, if I want to do some customizations in the front-end (HTML / React) of the application, do I need to build with
Copy code
./gradlew clean build
u
./gradlew airbyte-webapp:build
should be enough
u
or to rebuild the core part:
CORE_ONLY=1 ./gradlew build
so you can skip rebuilding all connectors
u
nice, thanks!