tailwind.config.js 304 B

123456789101112131415
  1. /** @type {import('tailwindcss').Config} */
  2. export default {
  3. content: [
  4. "./app/components/**/*.{js,vue,ts}",
  5. "./app/layouts/**/*.vue",
  6. "./app/pages/**/*.vue",
  7. "./app/plugins/**/*.{js,ts}",
  8. "./app/app.vue",
  9. "./app/error.vue",
  10. ],
  11. theme: {
  12. extend: {},
  13. },
  14. plugins: [],
  15. }