tailwind.config.js 185 B

123456789101112
  1. /**
  2. * @format
  3. * @type {import('tailwindcss').Config}
  4. */
  5. export default {
  6. content: ["./index.html", "./src/views/**/*.{vue,js}"],
  7. theme: {
  8. extend: {},
  9. },
  10. plugins: [],
  11. };