Tailwind CSS

De Banane Atomic
Aller à la navigationAller à la recherche

Integration with Blazor

Installation

Ps.svg
# from the root of your blazor project
npx tailwindcss init -p
tailwind.config.js
/** @type {import('tailwindcss').Config} */
module.exports = {
  content: [],
  theme: {
    extend: {},
  },
  plugins: [],
}
postcss.config.js
module.exports = {
  plugins: {
    tailwindcss: {},
    autoprefixer: {},
  },
}