fix esbuild

This commit is contained in:
Fredrik Jensen 2025-12-06 17:14:31 +01:00
parent 2b64a038ce
commit 1055bb98ee
2 changed files with 6 additions and 2 deletions

View File

@ -10,9 +10,10 @@
"watch": "tsc --watch" "watch": "tsc --watch"
}, },
"dependencies": { "dependencies": {
"@vercel/analytics": "^1.6.1",
"lucide-react": "^0.460.0",
"react": "^19.0.0", "react": "^19.0.0",
"react-dom": "^19.0.0", "react-dom": "^19.0.0"
"lucide-react": "^0.460.0"
}, },
"devDependencies": { "devDependencies": {
"@types/react": "^19.0.0", "@types/react": "^19.0.0",

View File

@ -3,6 +3,8 @@ import { Sidebar } from './components/Sidebar'
import { ToolsPanel } from './components/ToolsPanel' import { ToolsPanel } from './components/ToolsPanel'
import { ResultsPane } from './components/ResultsPane' import { ResultsPane } from './components/ResultsPane'
import { useMCP } from './hooks/useMCP' import { useMCP } from './hooks/useMCP'
import { Analytics } from '@vercel/analytics/next';
import './App.css' import './App.css'
export type Tool = { export type Tool = {
@ -142,6 +144,7 @@ function App() {
</div> </div>
</main> </main>
</div> </div>
<Analytics />
</div> </div>
) )
} }