tailwind.config.cjs 193 B

123456789
  1. /** @type {import('tailwindcss').Config} */
  2. module.exports = {
  3. content: ["./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
  4. prefix: "tw-",
  5. theme: {
  6. extend: {},
  7. },
  8. plugins: [],
  9. };