flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
19 lines (16 loc) • 380 B
JavaScript
import { build } from '../cli/commands/build.js';
import { dev } from '../cli/commands/dev.js';
import { pluginName } from './index.js';
var bun = {
name: pluginName,
setup({ onStart, config }) {
onStart(async () => {
await build();
if (!config.minify) {
await dev();
}
});
}
};
export { bun as default };
//# sourceMappingURL=bun.js.map