Files
ichiroku/tailwind.config.cjs
0nepeop1e 246bef3b55
All checks were successful
release / release (push) Successful in 1m9s
init
2024-08-09 15:59:23 +08:00

13 lines
195 B
JavaScript

/** @type {import('tailwindcss').Config}*/
const config = {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {}
},
plugins: []
};
module.exports = config;