Skip to main content

Troubleshooting

superun builds web apps

superun produces web applications, not native iOS/Android apps. Notes
  • Output is a web app
  • No direct native app export
  • Use responsive design for mobile
Mobile options
  • Responsive design
  • Progressive Web App (PWA)
  • Hybrid wrappers (if you add them)

Admin console in the same deployment

Need an admin backend? superun adds admin routes in the same project — configure access control carefully. How it works
  • Admin pages and routes live in your project
  • Same domain and deployment as the main app
  • Paths distinguish front vs admin (for example, /admin or /dashboard)
Access control
  • Authentication: Admin requires login
  • Roles: Separate admin vs regular users
  • Route guards: Protect admin paths
  • Data scope: Limit what admins can read/write
Steps
  1. Ask superun to generate admin UI and routes
  2. Configure auth and permissions
  3. Test that only authorized users reach admin
💡 Tip: Admin is part of the same deploy — permissions matter more than separate hosting.

Mobile experience optimization

Improve mobile UX with responsive design or PWA. Responsive design
  • Adapt to screen sizes
  • Optimize touch interactions
  • Adjust layout and font sizes
Progressive Web App (PWA)
  • Add to home screen
  • Offline support
  • App-like experience
  • Push notifications (where supported)

WeChat Mini Program deployment

superun offers a WeChat Mini Program plugin to wrap a published H5 app in web-view, with preview and upload inside superun. This is not a guarantee that any web page becomes a fully native mini program. Native APIs, components, login, pay, domain rules, and review may need mini program–specific work — verify compatibility and WeChat configuration before release.

Global access

superun supports global access without extra overseas nodes. Notes
  • Use superun from any region
  • Routing is optimized automatically
  • No separate overseas server purchase required
Good for
  • Global audiences
  • Cross-region access
  • International products