refactor(miniapp): add rewrite foundation and demo fixtures

This commit is contained in:
2026-03-11 18:41:36 +04:00
parent d40f5e1d84
commit b193f8ddce
19 changed files with 1073 additions and 490 deletions

View File

@@ -0,0 +1,10 @@
import { QueryClient } from '@tanstack/solid-query'
export const miniAppQueryClient = new QueryClient({
defaultOptions: {
queries: {
retry: 1,
staleTime: 30_000
}
}
})