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.
 
 
 

15 lines
361 B

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