preciazo/sitio/tailwind.config.cjs

13 lines
185 B
JavaScript
Raw Permalink Normal View History

2023-12-23 18:57:23 +00:00
/** @type {import('tailwindcss').Config}*/
const config = {
2023-12-23 18:59:09 +00:00
content: ["./src/**/*.{html,js,svelte,ts}"],
2023-12-23 18:57:23 +00:00
2023-12-23 18:59:09 +00:00
theme: {
extend: {},
},
2023-12-23 18:57:23 +00:00
2023-12-23 18:59:09 +00:00
plugins: [],
2023-12-23 18:57:23 +00:00
};
module.exports = config;