I’m using Netlify Functions to serve users with JavaScript disabled a no-js version of my site.
You can see it here: Dice Roller
Users submit a form with the number of dice they’d like to roll — if they have JavaScript enabled, the form doesn’t submit and instead dice are rolled on the same page. However, if JavaScript is disabled, the form submits, and sends a request to /.netlify/functions/roll-dice
This works great — but the average user may not know what netlify is, or maybe even what a function is — and i’d like to avoid any confusion and change it so it says something more appropriate. Like /no-js/roll-dice
Is this possible? If so, how could it be achieved?