feat: add Docker support with Dockerfile, docker-compose.yml, and .dockerignore

This commit is contained in:
Noooste
2025-12-08 21:43:04 +01:00
parent 95afb303fd
commit f4eaca62e8
31 changed files with 1130 additions and 685 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
import { QueryClient } from '@tanstack/react-query';
import {QueryClient} from '@tanstack/react-query';
// Create a query client with default options
export const queryClient = new QueryClient({
@@ -9,7 +9,7 @@ export const queryClient = new QueryClient({
retry: 1, // Retry failed requests once
refetchOnWindowFocus: false, // Don't refetch when window regains focus
refetchOnMount: false, // Don't refetch on component mount if data exists
placeholderData: (previousData) => previousData, // Keep previous data while fetching new data
placeholderData: (previousData: unknown) => previousData, // Keep previous data while fetching new data
},
},
});