CUB-116: Scaffold React frontend — Vite, TS, Tailwind
Some checks failed
Dev Build / build-test (pull_request) Failing after 2m13s

This commit is contained in:
2026-05-06 10:09:35 -04:00
parent 42285c5dac
commit e2be3bffa7
67 changed files with 2039 additions and 11068 deletions

View File

@@ -0,0 +1,17 @@
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
slate: {
850: '#1e293b',
},
},
},
},
plugins: [],
}