UNPKG

astro

Version:

Astro is a modern site builder with web best practices, performance, and DX front-of-mind.

17 lines (16 loc) 330 B
import { vitePluginActionsBuild } from "../../../actions/plugins.js"; function pluginActions(opts, internals) { return { targets: ["server"], hooks: { "build:before": () => { return { vitePlugin: vitePluginActionsBuild(opts, internals) }; } } }; } export { pluginActions };