feat: implement Anthropic API integration with simulation mode and a configurable admin dashboard

This commit is contained in:
RaymondVerhoef
2026-05-10 12:07:00 +02:00
parent 260644b41a
commit a626042092
7 changed files with 583 additions and 30 deletions

View File

@@ -5,4 +5,13 @@ import tailwindcss from '@tailwindcss/vite'
// https://vite.dev/config/
export default defineConfig({
plugins: [react(), tailwindcss()],
server: {
proxy: {
'/api/anthropic': {
target: 'https://api.anthropic.com',
changeOrigin: true,
rewrite: (path) => path.replace(/^\/api\/anthropic/, '')
}
}
}
})