diff options
Diffstat (limited to 'tailwind.config.js')
| -rw-r--r-- | tailwind.config.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 0000000..a7c7dc5 --- /dev/null +++ b/tailwind.config.js | |||
| @@ -0,0 +1,12 @@ | |||
| 1 | /** @type {import('tailwindcss').Config} */ | ||
| 2 | module.exports = { | ||
| 3 | content: [ | ||
| 4 | "./content/**/*.{html,js}", | ||
| 5 | "./layouts/**/*.{html,js}", | ||
| 6 | "./themes/**/*.{html,js}" | ||
| 7 | ], | ||
| 8 | theme: { | ||
| 9 | extend: {}, | ||
| 10 | }, | ||
| 11 | plugins: [], | ||
| 12 | } | ||
