Skip to content

Instantly share code, notes, and snippets.

@jherr
Created July 27, 2023 15:43
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jherr/9aefe9a0afb0517549a810b5ab1147de to your computer and use it in GitHub Desktop.
Save jherr/9aefe9a0afb0517549a810b5ab1147de to your computer and use it in GitHub Desktop.
Astro HTMX Middleware
/*
There is currently no way to get a `.astro` route to just return the HTML
without the CSS and JS. This is a workaround to remove the CSS and JS from
the HTML response of HTMX fragment routes.
The premise here is that HTMX fragments won't required additional styles because
the Tailwind for the entire experience is alreay precomputed. And second that it will
not require additional JS because ... HTMX.
*/
const HTMX_FRAGMENT_ROUTES = ["/prompt"];
export const onRequest = async (context, next) => {
const response = await next();
let html = await response.text();
if (
HTMX_FRAGMENT_ROUTES.find((route) => context.request.url.includes(route))
) {
// Delete the CSS and JS from the HTML response
html = html.replace(/<style type\=\"text\/css\"(.*)<\/style>/s, "");
html = html.replace(/<script(.*)<\/script>/gm, "");
}
return new Response(html, {
status: 200,
headers: response.headers,
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment