You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have an app that I want to wrap inside an electron wrapper. This app depends on the user's local files he/she can generate with the app. it's a dashboard-like app.
this is an example of routes I have on my app:
/welcome: onboarding wizard
/settings: user form
/drafts: list of local documents
/publications: another list of local documents
/editor/[id]: local generated document
for the /editor/[id] route, I can't generate those pages because the user needs to create them while using the app, so I can't use any of the build time apis to optimise those pages (right? 🤔)
❓is it OK to ship the electron app and let the app run next start to use it??
❓Do I need to "export" all the pages and mark the dynamic routes somehow so it will not try to generate those?
❓Is NextJS maybe too overkill for my use case?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
Hello! 👋
I have an app that I want to wrap inside an electron wrapper. This app depends on the user's local files he/she can generate with the app. it's a dashboard-like app.
this is an example of routes I have on my app:
/welcome
: onboarding wizard/settings
: user form/drafts
: list of local documents/publications
: another list of local documents/editor/[id]
: local generated documentfor the
/editor/[id]
route, I can't generate those pages because the user needs to create them while using the app, so I can't use any of the build time apis to optimise those pages (right? 🤔)thanks in advance! 👍
Beta Was this translation helpful? Give feedback.
All reactions