gitbutler/tailwind.config.cjs

13 lines
177 B
JavaScript
Raw Normal View History

2023-01-31 17:55:57 +03:00
const config = {
2023-02-16 14:15:45 +03:00
content: ["./src/**/*.{html,js,svelte,ts}"],
darkMode: "class",
2023-01-31 17:55:57 +03:00
2023-02-16 14:15:45 +03:00
theme: {
extend: {},
},
2023-01-31 17:55:57 +03:00
2023-02-16 14:15:45 +03:00
plugins: [],
2023-01-31 17:55:57 +03:00
};
module.exports = config;