exports.handler = async () => { const body = ` 301 Moved Permanently

301 Moved Permanently


CloudFront Lambda@Edge
`; return { status: '301', statusDescription: `Redirecting to www domain`, headers: { location: [ { key: 'Location', value: `https://genderdysphoria.fyi`, } ], }, body, }; };