tailwind.config.js 243 B

123456789101112131415
  1. /** @type {import('tailwindcss').Config} */
  2. module.exports = {
  3. content: [
  4. "./src/**/*.{js,jsx,ts,tsx}",
  5. ],
  6. theme: {
  7. extend: {},
  8. },
  9. plugins: [],
  10. corePlugins: {
  11. preflight: false, //禁止tailwindcss的默认属性
  12. }
  13. }