Skip to content

Instantly share code, notes, and snippets.

@tylerbishopdev
Created August 3, 2023 17:09
Show Gist options
  • Save tylerbishopdev/825d715833aee88f2afe87125a4d96cd to your computer and use it in GitHub Desktop.
Save tylerbishopdev/825d715833aee88f2afe87125a4d96cd to your computer and use it in GitHub Desktop.
ssr-astro-response
---
import { getProduct } from '../api';
const product = await getProduct(Astro.params.id);
// No product found
if (!product) {
return new Response(null, {
status: 404,
statusText: 'Not found'
});
}
---
<html>
<!-- Page here... -->
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment