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

19 lines
337 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: {
colors: {
var_background: "var(--color-background)"
}
},
},
plugins: [],
}