astro-ghostcms/.pnpm-store/v3/files/df/568bff5ef46ee0b6dfb2057bf6e...

18 lines
387 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
import { transform } from "./transform/index.js";
function html() {
return {
name: "astro:html",
options(options) {
options.plugins = options.plugins?.filter((p) => p.name !== "vite:build-html");
},
async transform(source, id) {
if (!id.endsWith(".html"))
return;
return await transform(source, id);
}
};
}
export {
html as default
};