2
0

tailwind.config.js 239 B

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