Files
linkylinky-dashboard/tailwind.config.cjs
T

13 lines
154 B
JavaScript
Raw Normal View History

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