Replies: 1 comment
-
I noticed that error is present, when i enable preloading of export default {
appDirectory: "src",
ssr: false,
// async prerender() { if i remove this, my app seems to work as usual SPA without redux errors
// return ["/"];
// },
} satisfies Config; So i guess, that pre-rendering Any way i can make |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, i'm trying to create:
/
- SSG for landing/app/*
- classic CSR SPAMy app used
<Provider store={store}>
for Redux state management. In RR framework i get errors when try to access my app:What is the correct way to make Redux work in
/app
??I disable SSR (IDK why my /app still renders on server invoking error, regarding to
entry.server.tsx
)My providers are in entry.cient.tsx:
my routes:
Beta Was this translation helpful? Give feedback.
All reactions