cards/tailwind.config.js

16 lines
301 B
JavaScript
Raw Normal View History

2024-07-20 23:00:19 -04:00
//
// This file is here until trunk can be told to source it from /client
//
2024-07-18 19:53:28 -04:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: {
relative: true,
2024-10-15 21:09:11 -04:00
files: ["./clients/leptos/*.html", "./clients/leptos/src/**/*.rs"],
2024-07-18 19:53:28 -04:00
},
theme: {
extend: {},
},
plugins: [],
};