From 80d64e04441ced7caecd238ae232e749d8e0dddf Mon Sep 17 00:00:00 2001 From: realtradam Date: Tue, 21 May 2024 23:32:53 -0400 Subject: initial setup of seperating frontend --- tailwind.config.js | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 tailwind.config.js (limited to 'tailwind.config.js') 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' + ] +} + -- cgit v1.2.3