Add ability to remove all startup forms in IDE

With the ability to add routes to apps, including the base path (“/”), it would be good to have the ability to remove the startup form entirely from an app (since a startup form takes precedence over the anvil.server.route("/") per Meredydd’s anouncement post).

I know I can currently go into the anvil.yaml file to do this on my local machine, but that’s a bit of a pain – especially since every time I add a new form it immediately becomes the startup form if there isn’t one.

2 Likes

You can add a client module and make that the startup item, so you don’t have any startup form.

EDIT
I just checked the documentation, and it looks like my solution is wrong: even having a startup module would prevent a route from responding to /.

1 Like