// this goes into src/http/get-index/index.js exports.handler = async function http (req) { console.log(req); // FYI: the body property is modified at build-time return { type: 'text/html; charset=utf8', body: `this will end up being overwritten every time you build the site by pwa_munger.js` }; };