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.
 
 
 

13 line
276 B

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