I'm building a marketing site, it's almost all static, except one or two api endpoints needed for form submissions. Was attempting to set output: "hybrid" but apparently that's been deprecated in favor of 'static'. Problem with static is that it doesn't support BINDINGS in the api routes. I need bindings there to connect to DB or workers via RPC.
What are my options here? I would really not like to have to set output: "server", just to enable bindings, then have to add prerender=true to every page, seems like a huge hassle.
Any ideas?