top of page
How to Create a Function in Wix Velo
KB001011
How To
views
Basic Structure of a wix Velo backend web function
When defining Web functions that can be called from the Front end you now need to wrap them in a Web Method.
Â
export const onNextNumber = webMethod(
Permissions.Anyone,
async () => {
try {
Â
Authored by
bottom of page