Files
aiworker-frontend/package.json
Hector Ros 90615832dd
All checks were successful
Build and Push Frontend / build (push) Successful in 19s
Fix Tailwind config: add @tailwindcss/vite plugin and use bun server for production
- Add @tailwindcss/vite plugin for proper Tailwind processing
- Change 'start' script from 'vite preview' to 'bun server.ts' (production-ready)
- Remove postcss.config.mjs (handled by Vite plugin)
- server.ts already configured to serve from dist/ directory

Co-Authored-By: Claude Sonnet 4.5 (1M context) <noreply@anthropic.com>
2026-01-20 01:51:15 +01:00

33 lines
713 B
JSON

{
"name": "frontend",
"module": "index.ts",
"type": "module",
"private": true,
"scripts": {
"dev": "vite",
"start": "bun server.ts",
"build": "vite build"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.18",
"@types/bun": "latest",
"@types/react": "^19.2.8",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.2",
"autoprefixer": "^10.4.23",
"postcss": "^8.5.6",
"vite": "^7.3.1"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@tailwindcss/postcss": "^4.1.18",
"axios": "^1.13.2",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-router-dom": "^7.12.0",
"tailwindcss": "^4.1.18"
}
}