diff options
| author | Alberto-Duarte <alberto@albertoduarte.com> | 2023-04-21 13:51:46 +0100 |
|---|---|---|
| committer | Alberto-Duarte <alberto@albertoduarte.com> | 2023-04-21 13:51:46 +0100 |
| commit | 1b3a300173c4531bebf3b88966a1fec64d276440 (patch) | |
| tree | 6c8f9f0a745eadd3615a50bbf47e14d1233cb80c /tailwind.config.js | |
First commit
Diffstat (limited to 'tailwind.config.js')
| -rw-r--r-- | tailwind.config.js | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 0000000..fba2ad6 --- /dev/null +++ b/tailwind.config.js @@ -0,0 +1,18 @@ +/** @type {import('tailwindcss').Config} */ +module.exports = { + content: [ + './src/pages/**/*.{js,ts,jsx,tsx}', + './src/components/**/*.{js,ts,jsx,tsx}', + './src/app/**/*.{js,ts,jsx,tsx}', + ], + theme: { + extend: { + backgroundImage: { + 'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))', + 'gradient-conic': + 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))', + }, + }, + }, + plugins: [], +} |