10 lines
161 B
JavaScript
Executable File
10 lines
161 B
JavaScript
Executable File
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ["./src/**/*.{svelte, html, js, ts}"],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
}
|
|
|