Replies: 1 comment 1 reply
-
How are you deploying your application? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm using next.js 9.3 and
getStaticPaths
withfallback: true
. In my page component I'm checking forisFallback
and rendering a spinner on fallback and an 404 error page if props are missing:While development opening an uncached pages shows the spinner and after loading everything my component, but on production the 404 error page is shown instead of the spinner.
How can I make sure that my component is build with the spinner as default?
Beta Was this translation helpful? Give feedback.
All reactions