Compare commits

...

3 Commits

Author SHA1 Message Date
8ed18a9695 Add title to generated html 2020-11-04 04:49:53 +01:00
2ebbab3aab Fix bugf 2020-11-04 04:43:11 +01:00
484be5a048 Remove unused file 2020-11-03 23:28:45 +01:00
3 changed files with 2 additions and 1 deletions

View File

@ -91,6 +91,7 @@ export default VIEWS.map((view) => ({
}), }),
typescript({ sourceMap: dev, inlineSources: dev }), typescript({ sourceMap: dev, inlineSources: dev }),
html({ html({
title: view,
attributes: { attributes: {
html: { lang: "en" }, html: { lang: "en" },
}, },

View File

View File

@ -45,7 +45,7 @@ async function getJWT(client_id: string, origin: string) {
const res = await request(`/api/user/oauth/jwt`, { const res = await request(`/api/user/oauth/jwt`, {
client_id, client_id,
origin, origin,
}).then((res) => res.json()); });
return res; return res;
} }