Skip to main content

Troubleshooting

superun generates web apps

superun generates web applications, not native applications. Notes:
  • superun currently only generates web apps
  • Cannot directly generate iOS or Android native apps
  • Can adapt for mobile via responsive design
Mobile solutions:
  • Responsive design
  • Progressive Web Apps (PWA)
  • Hybrid app frameworks

Admin system deployment

Need admin management features? superun adds admin routes in the same project. The key is configuring access permissions correctly. How it works:
  • superun adds admin management routes and pages to your project
  • Admin features run in the same project as your main app, sharing the same domain and deployment address
  • Frontend and admin are distinguished by route paths (e.g., /admin or /dashboard)
Important: Configure access permissions:
  • Set up authentication: Ensure admin pages require login to access
  • Define role permissions: Distinguish between admins and regular users—only admins can access admin features
  • Protect sensitive routes: Use route guards or middleware to protect admin-related routes
  • Limit data access: Ensure admin can only view and modify authorized data
Steps:
  1. Ask superun to generate an admin management system (it will add the corresponding routes and pages)
  2. Configure authentication and permission controls
  3. Test access permissions to ensure only authorized users can access
💡 Tip: The admin system is part of your project and doesn’t require separate deployment. The most important thing is to configure access permissions correctly to prevent unauthorized access.

Mobile experience optimization

Mobile experience? Use responsive design or Progressive Web Apps. Responsive design:
  • Adapt to different screen sizes
  • Optimize touch interactions
  • Adjust layout and font sizes
Progressive Web Apps (PWA):
  • Can be added to home screen
  • Support offline access
  • Provide near-native experience
  • Push notification capabilities