tailwind.config.js 214 B

1234567891011
  1. /** @type {import('tailwindcss').Config} */
  2. export default {
  3. // content: [],
  4. content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
  5. // darkMode: false,
  6. theme: {
  7. extend: {},
  8. },
  9. plugins: [],
  10. }