mirror of
https://github.com/openai/openai-cookbook
synced 2024-11-08 01:10:29 +00:00
29 lines
572 B
JavaScript
29 lines
572 B
JavaScript
const { fontFamily } = require("tailwindcss/defaultTheme");
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./app/**/*.{js,ts,jsx,tsx}",
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
"./pages/**/*.{js,ts,jsx,tsx}",
|
|
"./components/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
corePlugins: {
|
|
preflight: false,
|
|
},
|
|
theme: {
|
|
extend: {
|
|
},
|
|
},
|
|
keyframes: {
|
|
blink: {
|
|
"0%, 100%": { opacity: 1 },
|
|
"50%": { opacity: 0 },
|
|
},
|
|
},
|
|
plugins: [
|
|
require("@tailwindcss/line-clamp"),
|
|
require("@tailwindcss/typography"),
|
|
],
|
|
};
|