astro
Version:
Astro is a modern site builder with web best practices, performance, and DX front-of-mind.
19 lines (18 loc) • 372 B
JavaScript
const VIRTUAL_MODULE_ID = "astro:container";
function astroContainer() {
return {
name: VIRTUAL_MODULE_ID,
enforce: "pre",
resolveId: {
filter: {
id: new RegExp(`^(${VIRTUAL_MODULE_ID})$`)
},
handler() {
return this.resolve("astro/virtual-modules/container.js");
}
}
};
}
export {
astroContainer as default
};