linkylinky-dashboard/tailwind.config.cjs

13 lines
154 B
JavaScript
Raw Normal View History

2021-08-16 16:27:09 +00:00
const config = {
2022-04-30 15:24:58 +00:00
mode: "jit",
content: [
"./src/**/*.{html,js,svelte,ts}",
],
2021-08-16 16:27:09 +00:00
theme: {
2022-04-30 15:24:58 +00:00
extend: {},
2021-08-16 16:27:09 +00:00
},
2022-04-30 15:24:58 +00:00
plugins: [],
2021-08-16 16:27:09 +00:00
};
module.exports = config;