mirror of
https://github.com/tale/headplane.git
synced 2026-07-27 08:08:56 +00:00
10 lines
161 B
JavaScript
10 lines
161 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
const config = {
|
|
content: ["./src/**/*.{html,js,svelte,ts}"],
|
|
theme: {
|
|
extend: {}
|
|
},
|
|
};
|
|
|
|
export default config;
|