Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 7 additions & 8 deletions apps/frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,21 @@
"lint": "eslint src --ext ts,tsx"
},
"dependencies": {
"@tanstack/react-query": "^5.59.0",
"clsx": "^2.1.1",
"lucide-react": "^0.453.0",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"react-router-dom": "^6.27.0",
"@tanstack/react-query": "^5.59.0",
"react-dropzone": "^14.2.0",
"lucide-react": "^0.453.0",
"clsx": "^2.1.1"
"react-router-dom": "^6.27.0"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.18",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.0",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.14",
"tailwindcss": "^4.1.18",
"typescript": "^5.5.0",
"vite": "^5.4.0"
"vite": "^7.3.0"
}
}
6 changes: 0 additions & 6 deletions apps/frontend/postcss.config.js

This file was deleted.

2 changes: 1 addition & 1 deletion apps/frontend/src/components/documents/document-card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export function DocumentCard({ document }: DocumentCardProps) {
<div className="bg-white border border-gray-200 rounded-lg p-4 hover:shadow-md transition-shadow">
<div className="flex items-start justify-between mb-2">
<div className="flex items-start gap-3 flex-1 min-w-0">
<FileText className="w-5 h-5 text-gray-400 flex-shrink-0 mt-0.5" />
<FileText className="w-5 h-5 text-gray-400 shrink-0 mt-0.5" />
<div className="min-w-0 flex-1">
<h3 className="font-medium text-gray-900 truncate">{document.filename}</h3>
<div className="flex items-center gap-4 mt-1 text-xs text-gray-500">
Expand Down
15 changes: 11 additions & 4 deletions apps/frontend/src/index.css
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
@import "tailwindcss";

@theme {
/* Custom color palette */
--color-primary-50: #eff6ff;
--color-primary-500: #3b82f6;
--color-primary-600: #2563eb;
--color-primary-700: #1d4ed8;
}

@layer base {
body {
@apply bg-gray-50 text-gray-900;
background-color: var(--color-gray-50);
color: var(--color-gray-900);
}
}
17 changes: 0 additions & 17 deletions apps/frontend/tailwind.config.js

This file was deleted.

3 changes: 2 additions & 1 deletion apps/frontend/vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import tailwindcss from '@tailwindcss/vite';
import react from '@vitejs/plugin-react';
import path from 'path';
import { defineConfig } from 'vite';

export default defineConfig({
plugins: [react()],
plugins: [react(), tailwindcss()] as any,
resolve: {
alias: {
'@': path.resolve(__dirname, 'src'),
Expand Down
15 changes: 13 additions & 2 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
packages:
- 'apps/*'
- 'packages/*'
- apps/*
- packages/*

onlyBuiltDependencies:
- '@prisma/client'
- '@prisma/engines'
- cpu-features
- esbuild
- msgpackr-extract
- onnxruntime-node
- prisma
- protobufjs
- ssh2
Loading