Files
sqlchat/tailwind.config.js
2023-04-11 23:36:43 +08:00

13 lines
283 B
JavaScript

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