Jake Shore 4f2a8d6ab5 GHL MCP full update — 2026-02-06
=== DONE ===
- MCP Apps UI system added (11 apps with _meta.ui.resourceUri)
- 19 new tool modules added
- Tool count: 269 → 461 across 38 categories
- Upstream changes merged
- All tools tagged with _meta labels
- Package lock updated

=== TO-DO ===
- [ ] Fix 42 failing edge case tests (BLOCKER — Stage 11)
- [ ] Live API testing with GHL credentials
- [ ] App design approval for Stage 7→8
2026-02-06 06:27:05 -05:00

23 lines
723 B
TypeScript

import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
import { viteSingleFile } from 'vite-plugin-singlefile';
import path from 'path';
export default defineConfig({
plugins: [react(), viteSingleFile()],
root: __dirname,
build: {
outDir: path.resolve(__dirname, '../../../../dist/apps/calendar-resources'),
emptyOutDir: false,
rollupOptions: { input: path.resolve(__dirname, 'index.html') },
},
resolve: {
alias: {
'@components': path.resolve(__dirname, '../../components'),
'@hooks': path.resolve(__dirname, '../../hooks'),
'@styles': path.resolve(__dirname, '../../styles'),
'@context': path.resolve(__dirname, '../../context'),
},
},
});