2023-03-08 21:22:39 +01:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
2023-04-02 16:24:06 +02:00
|
|
|
export default {
|
|
|
|
content: [
|
|
|
|
"./index.html",
|
|
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
|
|
],
|
|
|
|
theme: {
|
|
|
|
extend: {},
|
|
|
|
},
|
|
|
|
plugins: [],
|
2023-03-08 21:22:39 +01:00
|
|
|
}
|
2023-04-02 16:24:06 +02:00
|
|
|
|