PortfolioWebsite/website/tailwind.config.js

14 lines
258 B
JavaScript
Raw Normal View History

2024-12-11 17:33:17 -05:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: {
files: ["*.html", "./src/**/*.rs"],
transform: {
rs: (content) => content.replace(/(?:^|\s)class:/g, ' '),
},
},
theme: {
extend: {},
},
plugins: [],
}