tailwind.config.cjs 189 B

123456789
  1. /** @type {import('tailwindcss').Config} */
  2. module.exports = {
  3. content: ['./index.html', './src/**/*.{vue,js}'],
  4. theme: {},
  5. plugins: [],
  6. corePlugins: {
  7. preflight: false,
  8. },
  9. }