8 lines
313 B
JavaScript
8 lines
313 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ["./src/**/*.{js,ts,jsx,tsx}", "./index.html"],
|
|
// safelist is used to allow classes to not be purged by tailwind
|
|
safelist: ["alert-info", "alert-success", "alert-warning", "alert-error"],
|
|
plugins: [require("@tailwindcss/typography")],
|
|
};
|