Layout scaffolding for Web apps.
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tailwind.config.js 361 B

1234567891011121314
  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. }