Fix Docker build by using path alias for queryClient import
Browse filesChanged import from "./lib/queryClient" to "@/lib/queryClient"
to use the configured path alias which resolves correctly
in the Docker build environment.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <[email protected]>
- client/src/App.tsx +1 -1
client/src/App.tsx
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
import { Switch, Route } from "wouter";
|
2 |
-
import { queryClient } from "
|
3 |
import { QueryClientProvider } from "@tanstack/react-query";
|
4 |
import { Toaster } from "@/components/ui/toaster";
|
5 |
import { TooltipProvider } from "@/components/ui/tooltip";
|
|
|
1 |
import { Switch, Route } from "wouter";
|
2 |
+
import { queryClient } from "@/lib/queryClient";
|
3 |
import { QueryClientProvider } from "@tanstack/react-query";
|
4 |
import { Toaster } from "@/components/ui/toaster";
|
5 |
import { TooltipProvider } from "@/components/ui/tooltip";
|