aboutsummaryrefslogtreecommitdiff
path: root/tailwind.config.js
blob: 7849f91211474533bd421fd3a4c8c7df54e0cf83 (plain)
1
2
3
4
5
6
7
8
9
10
11
/** @type {import('tailwindcss').Config} */
module.exports = {
  content: [
    "./index.html",
    "./src/**/*.{vue,js,ts,jsx,tsx}",
  ],
  theme: {
    extend: {},
  },
  plugins: [],
}