deno.land / x / fresh@1.1.1 / tests / fixture_plugin / utils / css-inject-plugin.ts
12345678910111213141516171819import { Plugin } from "$fresh/server.ts";
let CSS_TO_INJECT = "";export function inject(cssText: string) { CSS_TO_INJECT = cssText;}
export default { name: "css-inject", render(ctx) { CSS_TO_INJECT = ""; const res = ctx.render(); if (res.requiresHydration) { CSS_TO_INJECT += " h1 { color: blue; }"; } return { styles: [{ cssText: CSS_TO_INJECT, id: "abc" }] }; },} as Plugin;
Version Info