Add .ts extension to queryClient import for Docker compatibility
Browse filesThe Docker build environment requires explicit .ts extension
for the path alias resolution to work correctly.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
- 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 "@/lib/queryClient";
|
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.ts";
|
3 |
import { QueryClientProvider } from "@tanstack/react-query";
|
4 |
import { Toaster } from "@/components/ui/toaster";
|
5 |
import { TooltipProvider } from "@/components/ui/tooltip";
|