chore(examples): update routify version to 2.x

This commit is contained in:
La Ode Muhammad Al Fatih 2021-02-03 23:17:51 +07:00
commit 1fdd2338f9
32 changed files with 2849 additions and 2693 deletions

View file

@ -0,0 +1,11 @@
const fs = require('fs')
const { tossr } = require('tossr')
const { script, template } = require('./bundle.json')
exports.handler = async (event, context) => {
const qs = Object.entries(event.queryStringParameters)
.map(([key, value]) => `${key}=${value}`)
.join('&');
const body = await tossr(template, script, `${event.path}?${qs}`);
return { statusCode: 200, body: body + '\n<!--ssr rendered-->' }
}