cointube / tailwind.config.js
salomonsky's picture
Create tailwind.config.js
9b39e09 verified
raw
history blame contribute delete
242 Bytes
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./cointube.jsx",
],
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'sans-serif'],
},
},
},
plugins: [],
}