chatgpt-web/tailwind.config.js

12 lines
188 B
JavaScript
Raw Normal View History

2023-02-08 22:21:33 -05:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./index.html',
'./src/**/*.{vue,js,ts,jsx,tsx}',
],
theme: {
extend: {},
},
plugins: [],
}