tailwind.config.js 209 B

123456789
  1. /** @type {import('tailwindcss').Config} */
  2. module.exports = {
  3. content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
  4. important: true,
  5. theme: {
  6. extend: {},
  7. },
  8. plugins: [],
  9. };