feat: implement activity feed module with debounced filtering, history tracking, and axios service integration

This commit is contained in:
2026-06-24 11:28:37 +05:30
parent de2b5a808f
commit fc61b4cdb6
13 changed files with 442 additions and 156 deletions

View File

@@ -6,7 +6,13 @@ export default defineConfig({
plugins: [react()],
server: {
allowedHosts: true,
// Reverse proxy is no longer needed since endpoints allow CORS natively
proxy: {
'/api/rocketchat': {
target: 'https://text.seekright.com',
changeOrigin: true,
rewrite: (path) => path.replace(/^\/api\/rocketchat/, ''),
},
},
},
preview: {
allowedHosts: true,