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
2 changes: 1 addition & 1 deletion apps/web/home.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { LitElement, html, css } from 'lit';
const AGENT_PROMPT = `Add this MCP and follow the skill so you can render real UI forms for me instead of asking in chat.

MCP: https://api.pagent.link/mcp
Skill: https://raw.githubusercontent.com/blockful/pagent/main/skills/pagent/SKILL.md`;
Skill: https://pagent.link/SKILL.md`;

class HomePage extends LitElement {
static properties = {
Expand Down
8 changes: 7 additions & 1 deletion apps/web/vercel.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,13 @@
"installCommand": "cd ../.. && npm install",
"outputDirectory": "dist",
"framework": null,
"rewrites": [{ "source": "/(.*)", "destination": "/index.html" }],
"rewrites": [
{
"source": "/SKILL.md",
"destination": "https://raw.githubusercontent.com/blockful/pagent/main/skills/pagent/SKILL.md"
},
{ "source": "/(.*)", "destination": "/index.html" }
],
"headers": [
{
"source": "/(.*)",
Expand Down
Loading