@viivue/tailwindcss-preset
Version:
TailwindCSS preset that supports CSS variables, responsive pixel-based values, desktop-first, helper components and more.
15 lines (12 loc) • 363 B
JavaScript
/** @type {import('tailwindcss').Config} */
import config from "./theme.config.json" with { type: "json" };
import { viivuePreset } from '../dist/index.js';
// import { viivuePreset } from '@viivue/tailwindcss-preset';
export default {
content: ['./src/**/*.{html,js}'],
theme: {
extend: {
}
},
presets: [viivuePreset(config)],
};