SectorFileUpdater/tailwind.config.js

13 lines
195 B
JavaScript
Raw Normal View History

2024-12-25 06:54:02 +01:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,js}"],
theme: {
extend: {},
},
plugins: {
tailwindcss: {},
autoprefixer: {},
}
}