Example HTML response Lambda

StuartCreed - Dec 6 '23 - - Dev Community

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;
};

. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
Terabox Video Player