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
- 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.,
/adminor/dashboard)
- 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
- Ask superun to generate an admin management system (it will add the corresponding routes and pages)
- Configure authentication and permission controls
- 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
- Can be added to home screen
- Support offline access
- Provide near-native experience
- Push notification capabilities

