@poupe/vue
Version:
Vue component library for Poupe UI framework with theme customization and accessibility support
12 lines (11 loc) • 489 B
JavaScript
import { fileURLToPath } from "node:url";
import ScrollbarPlugin from "tailwind-scrollbar";
const tailwindPlugins = [ScrollbarPlugin];
const contentPath = () => fileURLToPath(new URL("..", import.meta.url));
const contentEntries = ["components", "theme-scheme"];
const contentGlobs = () => {
const path = contentPath();
return contentEntries.map((entry) => `${path}/${entry}/index.{mjs,css}`);
};
export { contentGlobs, contentPath, tailwindPlugins };
//# sourceMappingURL=index.mjs.map