2023-12-07 23:12:27 +00:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
export default {
|
|
|
|
content: ["./index.html", "./src/**/*.svelte"],
|
|
|
|
theme: {
|
|
|
|
extend: {},
|
|
|
|
},
|
2023-12-08 21:59:21 +00:00
|
|
|
plugins: [require("@tailwindcss/typography")],
|
2023-12-07 23:12:27 +00:00
|
|
|
};
|