tailwind.config.js 316 B

123456789101112131415
  1. module.exports = {
  2. purge: { content: ['./public/**/*.html', './src/**/*.vue'] },
  3. darkMode: false, // or 'media' or 'class'
  4. theme: {
  5. extend: {},
  6. },
  7. // 禁用指定的css类
  8. corePlugins: {
  9. // container: false,
  10. },
  11. variants: {
  12. extend: {},
  13. },
  14. plugins: [],
  15. }