osm-track-importer/tailwind.config.js
2025-02-28 18:23:05 +01:00

13 lines
No EOL
289 B
JavaScript

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