This is just a technology testing project based on Create React App and TailwindCSS
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

7 lines
165B

  1. const tailwindcss = require('tailwindcss');
  2. module.exports = {
  3. plugins: [
  4. tailwindcss('./tailwind.config.js'),
  5. require('autoprefixer'),
  6. ],
  7. };