diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2023-07-14 11:42:42 -0400 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2023-07-14 11:42:42 -0400 |
| commit | 1a18c9a67bff181a0e69edbc8e5e9535d9ee791f (patch) | |
| tree | fd51b331b5eb47af5b3e392bcb09289c153e2994 /tailwind.config.js | |
| download | alure-website-1a18c9a67bff181a0e69edbc8e5e9535d9ee791f.tar.gz alure-website-1a18c9a67bff181a0e69edbc8e5e9535d9ee791f.tar.bz2 alure-website-1a18c9a67bff181a0e69edbc8e5e9535d9ee791f.zip | |
Initial commit from Create Next App
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..8c4d1b2 --- /dev/null +++ b/tailwind.config.js @@ -0,0 +1,18 @@ +/** @type {import('tailwindcss').Config} */ +module.exports = { + content: [ + './pages/**/*.{js,ts,jsx,tsx,mdx}', + './components/**/*.{js,ts,jsx,tsx,mdx}', + './app/**/*.{js,ts,jsx,tsx,mdx}', + ], + 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: [], +} |
