qotnews/webapp/src/routes/index.json.js
Jason Schwarzenberger fe4b02e8a1 add svelte app.
2020-11-27 13:43:47 +13:00

9 lines
230 B
JavaScript

import fetch from 'node-fetch';
export async function get(req, res) {
const response = await fetch(`http://localhost:33842/api`);
res.writeHead(200, {
'Content-Type': 'application/json'
});
res.end(await response.text());
}