diff options
| author | realtradam <[email protected]> | 2024-05-21 23:32:53 -0400 |
|---|---|---|
| committer | realtradam <[email protected]> | 2024-05-21 23:32:53 -0400 |
| commit | 80d64e04441ced7caecd238ae232e749d8e0dddf (patch) | |
| tree | c41d7803a15aa99b51703bbecc56ec2ed2233431 /tailwind.config.js | |
| download | malcz.com-80d64e04441ced7caecd238ae232e749d8e0dddf.tar.gz malcz.com-80d64e04441ced7caecd238ae232e749d8e0dddf.zip | |
initial setup of seperating frontend
Diffstat (limited to 'tailwind.config.js')
| -rw-r--r-- | tailwind.config.js | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 0000000..791f892 --- /dev/null +++ b/tailwind.config.js @@ -0,0 +1,28 @@ +/** @type {import('tailwindcss').Config} */ +export default { + content: [ + './index.html', + './src/**/*.{js,ts,jsx,tsx}', + ], + theme: { + extend: { + backgroundImage: { + 'star': "url('/star.png')", + }, + padding: { + '5%': '5%' + }, + }, + }, + plugins: [ + //require('@tailwindcss/forms'), + //require('@tailwindcss/aspect-ratio'), + //require('@tailwindcss/typography'), + //require('@tailwindcss/container-queries'), + ], + safelist: [ + 'before:w-3', + 'before:w-4' + ] +} + |
