vueless
Version:
Vue Styleless UI Component Library, powered by Tailwind CSS.
44 lines (39 loc) • 803 B
JavaScript
export const SRC_COMPONENTS_PATH = "/src/components";
export const COMPONENTS_PATH = "/components";
export const DEFAULT_VUELESS_CONFIG_CONTENT = `
export default {
/**
* Global settings.
*/
strategy: "merge",
brand: "grayscale",
gray: "cool",
outline: 2,
rounding: 8,
colorMode: "auto",
baseClasses: "",
/**
* Directive settings.
*/
directives: {},
/**
* Component settings.
*/
components: /*tw*/ {},
/**
* Tailwind CSS theme config.
* https://tailwindcss.com/docs/theme
*/
tailwindTheme: {
extend: {
colors: {},
},
},
/**
* Custom classes TailwindMerge settings.
* All lists of rules available here:
* https://github.com/dcastil/tailwind-merge/blob/v2.3.0/src/lib/default-config.ts
*/
tailwindMerge: {},
};
`;