mirror of
https://github.com/SoPat712/maisie-heardle.git
synced 2025-08-21 10:18:45 -04:00
11 lines
204 B
JavaScript
11 lines
204 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ['./src/**/*.{html,svelte,ts,js}'],
|
|
theme: {
|
|
extend: {
|
|
// put your custom colors, spacing, etc. here
|
|
}
|
|
},
|
|
plugins: []
|
|
};
|