Laptop-Thing/web/tailwind.config.js

11 lines
188 B
JavaScript
Raw Permalink Normal View History

2024-11-27 12:33:48 -05:00
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{svelte,js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
plugins: [],
}