Files
nosys_libs/vueNoSys/tailwind.config.js
2026-01-25 13:55:46 +10:00

14 lines
247 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'sans-serif'],
},
},
},
plugins: [],
}