A social knowledge tool for researchers built on ATProto

feat: add vercel configuration for webapp deployment

Co-authored-by: aider (anthropic/claude-sonnet-4-20250514) <aider@aider.chat>

Changed files
+6
+1
package.json
··· 11 11 "doc": "docs" 12 12 }, 13 13 "scripts": { 14 + "build:webapp": "npm run build:types && npm run build --workspace=semble-webapp", 14 15 "build:types": "npm run build --workspace=@semble/types", 15 16 "dev:types": "npm run dev --workspace=@semble/types", 16 17 "type-check": "tsc --noEmit",
+5
vercel.json
··· 1 + { 2 + "buildCommand": "npm run build:webapp", 3 + "outputDirectory": "src/webapp/.next", 4 + "installCommand": "npm install" 5 + }