Frontend

All frontend files are located in the /frontend folder. This folder contains your React components, styles, and assets. When you run noapi runserver, the development server supports hot reloading. This means any changes you make to files in the /frontend folder will automatically update in the browser in real time, without requiring a manual refresh or server restart.

The frontend is built with React, so you only need to write standard React code. Create components, use hooks, manage state, and style your app as usual. The setup handles the build process, allowing you to focus solely on development. No additional configuration is needed—just start coding.

NB:

NoApi creates a production build everytime you make changes, so dev errors like unused variables will break your server, so either comment it out or use "_variableName"