"Time Out" error

Hello,

We have configured a router, like this

export function fr_Router(request) {
    ok('Test',{}, {title:'ok'});
}

But when I try to access the URL https://aganeriwix.wixsite.com/aganeri-wix/fr/aa I get this error message:

Time Out

This page isn’t available right now. But we’re working on a fix, ASAP. Try again soon.
If you access the URL above, you will get this error.

Now, I wonder how this error can happen with a router not doing anything.

How can I diagnose this issue? Is there a place where I can find technical error + details? I’m software developer.

Thank you,

Laurent

Hi Laurent,

Your answer might be as simple as adding a return:
return ok(‘Test’,{}, {title:‘ok’});

I hope this help.

Yisrael

Thx! That helped!