refactor(web): move website into turbo app workspace

This commit is contained in:
vince 2026-06-20 05:41:36 +02:00
parent 78a4e28dd4
commit 1037d393be
3 changed files with 28 additions and 0 deletions

25
components.json Normal file
View file

@ -0,0 +1,25 @@
{
"$schema": "https://ui.shadcn.com/schema.json",
"style": "radix-nova",
"rsc": false,
"tsx": true,
"tailwind": {
"config": "",
"css": "src/styles.css",
"baseColor": "neutral",
"cssVariables": true,
"prefix": ""
},
"iconLibrary": "lucide",
"rtl": false,
"aliases": {
"components": "src/components",
"utils": "src/utils",
"ui": "src/primitives",
"lib": "src",
"hooks": "src/hooks"
},
"menuColor": "default",
"menuAccent": "subtle",
"registries": {}
}

View file

@ -43,6 +43,8 @@
"@types/node": "^25.9.3",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"bun-types": "^1.3.14",
"storybook": "^10.4.6",
"typescript": "^6.0.3",
"vite": "^8.0.16",
"vitest": "^4.1.9"

1
src/css.d.ts vendored Normal file
View file

@ -0,0 +1 @@
declare module "*.css";