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"
},
"dependencies": {
"@vercel/analytics": "^1.6.1",
"lucide-react": "^0.460.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"lucide-react": "^0.460.0"
"react-dom": "^19.0.0"
},
"devDependencies": {
"@types/react": "^19.0.0",

View File

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