Cannot connect to _functions

Sorry for remaking this thread, but I cannot figure out what the problem is and I believe it to be on the server side.

If I visit another wix domain’s /_functions/ path, I’d receive a 404.
If I visit my own domain’s /_functions/ path, I get absolutely no response, whether or not the function exists. This means no status code either.

Here’s an example.
https://www.untitledtattoo.com/_functions/login
a non existent function:
[u]https://www.untitledtattoo.com/_functions/xyz[/u]
will also give no response

I tried the site different IPs and browsers to no avail.
Once again, I can only assume this is server side.
I would really appreciate some help with this.

I kept my functions file as simple as possible.
http-functions.js:

import {ok, badRequest, post, get, response} from ‘wix-http-functions’;
import wixData from ‘wix-Data’;

export function get_login(request){ return ok();}

there’s a typo in your wix-data import:
import wixData from ‘wix-Data’;

should be
import wixData from ‘wix-data’;