Files
sqlchat/tailwind.config.js
2023-04-29 22:49:07 +08:00

18 lines
337 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx}",
"./src/components/**/*.{js,ts,jsx,tsx}",
],
darkMode: "class",
theme: {
extend: {
zIndex: {
1: "1",
100: "100",
},
},
},
plugins: [require("@tailwindcss/typography")],
};