tailwind.config.js 334 B

12345678910111213
  1. /** @type {import('tailwindcss').Config} */
  2. // const defaultTheme = require('tailwindcss/defaultTheme')
  3. module.exports = {
  4. content: ['./index.html', './src/**/*.{vue,js,ts}'],
  5. theme: {
  6. extend: {
  7. // fontFamily: {
  8. // sans: ['"Inter var"', ...defaultTheme.fontFamily.sans],
  9. // },
  10. },
  11. },
  12. plugins: [],
  13. }