This is just a technology testing project based on Create React App and TailwindCSS
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

postcss.config.js 165B

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