tailwind.config.js 209 B

1234567891011
  1. // tailwind.config.js
  2. module.exports = {
  3. content: [
  4. "./index.html",
  5. "./src/**/*.{vue,js,ts,jsx,tsx}" // 关键:扫描 src 下所有相关文件
  6. ],
  7. theme: {
  8. extend: {},
  9. },
  10. plugins: [],
  11. }