Skip to content
Snippets Groups Projects
Select Git revision
  • master
1 result

_diff.css

Blame
  • tailwind.config.js 235 B
    /** @type {import('tailwindcss').Config} */
    module.exports = {
      content: [
        './public/**/*.html',
        './src/**/*.{vue,js,ts,jsx,tsx}'
      ],
      theme: {
        extend: {},
      },
      plugins: [
        require('@tailwindcss/typography')
      ],
    }