Layout scaffolding for Web apps.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

14 lines
335 B

  1. const { tailwind } = require('@tesseract-design/viewfinder-base');
  2. /** @type {import('tailwindcss').Config} */
  3. module.exports = {
  4. content: [
  5. './src/**/*.{js,ts,jsx,tsx,mdx}',
  6. './node_modules/@tesseract-design/viewfinder-react/dist/**/*.js',
  7. ],
  8. plugins: [
  9. require('@tailwindcss/typography'),
  10. tailwind.plugin(),
  11. ],
  12. }