deno.land / x / fresh@1.1.1 / tests / fixture_plugin / utils / js-inject-plugin.ts
12345678910111213141516import { Plugin } from "$fresh/server.ts";
export default { name: "js-inject", entrypoints: { "main": new URL("./js-inject-main.ts", import.meta.url).href, }, render(ctx) { const res = ctx.render(); if (res.requiresHydration) { return { scripts: [{ entrypoint: "main", state: "JS injected!" }] }; } return {}; },} as Plugin;
Version Info