initialize Vite + React + TypeScript project with Tailwind CSS and API service setup

This commit is contained in:
2025-02-01 00:33:24 -03:00
commit f133e18302
31 changed files with 5317 additions and 0 deletions

8
tailwind.config.js Executable file
View File

@@ -0,0 +1,8 @@
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {},
},
plugins: [],
};