2025-01-19 20:31:01 +01:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
module.exports = {
|
2025-01-21 13:29:09 +01:00
|
|
|
content: ["./src/**/*.{html,ts}"],
|
2025-01-19 20:31:01 +01:00
|
|
|
theme: {
|
|
|
|
extend: {},
|
|
|
|
},
|
2025-01-21 09:31:43 +01:00
|
|
|
corePlugins: {
|
|
|
|
preflight: false,
|
2025-01-19 21:59:45 +01:00
|
|
|
},
|
2025-01-21 09:31:43 +01:00
|
|
|
plugins: [],
|
2025-01-21 13:29:09 +01:00
|
|
|
};
|