diff --git a/netlify/functions/hello.js b/netlify/functions/hello.js new file mode 100644 index 0000000..05f5e74 --- /dev/null +++ b/netlify/functions/hello.js @@ -0,0 +1,14 @@ +export default async () => { + return new Response( + ` + + Hello +

Hello, World!

+`, + { headers: { 'content-type': 'text/html; charset=utf-8' } } + ) +} + +export const config = { + path: '/developers/api/hello' +}