diff --git a/netlify/functions/hello.js b/netlify/functions/hello.js new file mode 100644 index 0000000..c96fb66 --- /dev/null +++ b/netlify/functions/hello.js @@ -0,0 +1,6 @@ +exports.handler = async function (event, context) { + return { + statusCode: 200, + body: JSON.stringify({ message: 'Hello World' }), + }; +};