refactor: enhance routing and state management in CoopBuilder, add migration checks on startup, and update Tailwind configuration for improved component styling

This commit is contained in:
Jennie Robinson Faber 2025-08-23 18:24:31 +01:00
parent 848386e3dd
commit 4cea1f71fe
55 changed files with 4053 additions and 1486 deletions

View file

@ -1,5 +1,13 @@
import type { Config } from "tailwindcss";
export default {
content: [
'./app.vue',
'./pages/**/*.vue',
'./components/**/*.{vue,js,ts}',
'./composables/**/*.{js,ts}',
'./layouts/**/*.vue',
'./plugins/**/*.{js,ts}',
],
darkMode: "class",
} satisfies Config;