Set up vite proxy server, remove CORS hack

This commit is contained in:
sid palas
2023-01-23 17:01:37 -05:00
parent 961c90cd7b
commit dc832ac671
9 changed files with 26 additions and 61 deletions

View File

@ -37,8 +37,8 @@ export function App() {
return (
<QueryClientProvider client={queryClient}>
<h1>Hey Team! 👋</h1>
<Example api="http://localhost:8080/"/>
<Example api="http://localhost:3000/"/>
<Example api="/api/golang"/>
<Example api="/api/node"/>
</QueryClientProvider>
);
}