diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2023-10-07 15:20:28 -0600 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2023-10-07 15:20:28 -0600 |
commit | 7f086eb98ea7053d9939bdb8ae3f46cc5796e9c6 (patch) | |
tree | f127e238d12fe081e0a17f1804df521990d13300 /tailwind.config.js | |
parent | 44545ae5ea46748e34fc14694f1e801d56581c87 (diff) |
add boilerplate
Diffstat (limited to 'tailwind.config.js')
-rw-r--r-- | tailwind.config.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 0000000..919fe72 --- /dev/null +++ b/tailwind.config.js @@ -0,0 +1,8 @@ +/** @type {import('tailwindcss').Config} */ +module.exports = { + content: ["./src/**/*.{html,js}", "./templates/**/*.{html,js}"], + theme: { + extend: {}, + }, + plugins: [require('@tailwindcss/forms')], +} |