From ba5e2b5e6c20207955991775dc4aa8879331542c Mon Sep 17 00:00:00 2001 From: Matthew Phillips Date: Mon, 14 Feb 2022 12:48:52 -0500 Subject: Flagged SSR support (#2548) * Checkpoint, basics are working * Add the `--experimental-ssr` flag * Adds the changeset * Fixes population of getStaticPaths results * Pass through the imported module * Route manifest test * Fix remaining tests * Fix remaining tests * Copy server assets over * Fix types * Allowing passing in the request to the Node version of App * Improve the example app * Gets CI to pass --- examples/ssr/server/dev-api.mjs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 examples/ssr/server/dev-api.mjs (limited to 'examples/ssr/server/dev-api.mjs') diff --git a/examples/ssr/server/dev-api.mjs b/examples/ssr/server/dev-api.mjs new file mode 100644 index 000000000..74e0ef83b --- /dev/null +++ b/examples/ssr/server/dev-api.mjs @@ -0,0 +1,17 @@ +import { createServer } from 'http'; +import { apiHandler } from './api.mjs'; + +const PORT = process.env.PORT || 8085; + +const server = createServer((req, res) => { + apiHandler(req, res).catch(err => { + console.error(err); + res.writeHead(500, { + 'Content-Type': 'text/plain' + }); + res.end(err.toString()); + }) +}); + +server.listen(PORT); +console.log(`API running at http://localhost:${PORT}`); -- cgit v1.2.3