tailwind.config.js 263 B

123456789101112131415
  1. /** @type {import('tailwindcss').Config} */
  2. export default {
  3. content: [
  4. "./index.html",
  5. "./src/**/*.{vue,js,ts,jsx,tsx}",
  6. ],
  7. theme: {
  8. extend: {},
  9. },
  10. plugins: [],
  11. // not use tailwind default css
  12. corePlugins: {
  13. preflight: false,
  14. }
  15. }