Files
Dennis Jin f92103e386 Extract MCP server to separate package and rename _package-export to package
- Move server code (MCP, HTTP, SQLite) to new `mcp/` workspace package
- Remove server dependencies from main agentation package (now frontend-only)
- Rename `_package-export/` directory to `package/`
- Add `pnpm mcp` command to run MCP server from root
- Update all workspace references and build configs

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-25 13:38:22 -05:00

9 lines
216 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export',
// Allow importing from parent directory (the package source)
transpilePackages: ['agentation'],
};
module.exports = nextConfig;