DEV Community

StuartCreed
StuartCreed

Posted on

Example HTML response Lambda

export const handler = async (event) => {
const response = {
statusCode: 200,
headers: {
"Content-Type": "text/html"
},
body: <html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"></head><body><div>test</div></body></html>
};
return response;
};

Top comments (0)