tailwind.config.js 198 B

1234567891011
  1. /** @type {import('tailwindcss').Config} */
  2. module.exports = {
  3. content: ['./src/**/*.{html,js,tsx}'],
  4. corePlugins: {
  5. preflight: false,
  6. },
  7. theme: {
  8. extend: {},
  9. },
  10. plugins: [],
  11. };