Ancient-Programming-Site/tailwind.config.js
2025-02-03 15:19:32 +01:00

16 lines
263 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
purge: [
'./index.html',
'./src/**/*.{vue,js,ts,jsx,tsx}'
],
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx,vue}",
],
theme: {
extend: {
},
},
plugins: [],
}