16 lines
421 B
JavaScript
16 lines
421 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
"./index.html",
|
|
"./node_modules/tw-elements/dist/js/**/*.js",
|
|
],
|
|
// safelist is used to allow classes to not be purged by tailwind
|
|
safelist: ["alert-info", "alert-success", "alert-warning", "alert-error"],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [require("tw-elements/dist/plugin.cjs")],
|
|
darkMode: "class",
|
|
};
|