tailwind.config.js 284 B

12345678910111213
  1. module.exports = {
  2. mode: "all",
  3. content: [
  4. // include all rust, html and css files in the src directory
  5. "./src/**/*.{rs,html,css}",
  6. // include all html files in the output (dist) directory
  7. "./dist/**/*.html",
  8. ],
  9. theme: {
  10. extend: {},
  11. },
  12. plugins: [],
  13. };