Deployment

Use this checklist before releasing your game to ensure a smooth deployment.

Pre-Build

React UI

Plugin & Overrides

Game Data

Assets

Build Process

Package Build

Post-Build Validation

Testing

Functional Testing

Asset Testing

Performance Testing

Cross-Platform (if applicable)

Final Steps

Documentation

Distribution Prep

Platform-Specific

Steam:

itch.io:

Mobile (if applicable):

Common Issues

Game doesn't launch

  • Check package.jsonmain is index.html

  • Verify runtime files copied correctly

  • Check for missing DLLs (Windows)

Black screen on launch

  • React assets not loaded (check manifest path)

  • Plugin not enabled

  • JavaScript error (check DevTools console)

Missing graphics

  • Asset pruning removed needed files

  • Review asset-manifest.txt

  • Add missing references to data files

Performance issues

  • Optimize large images

  • Reduce particle effects

  • Check for memory leaks in custom code

  • Profile with DevTools

Save file corruption

  • Test save compatibility after updates

  • Provide save migration if data structure changed

  • Warn players to backup saves

Post-Release

Monitoring

Support

Version Management

Track what changes between builds:

Keep old builds archived in case rollback is needed.

See Also

Last updated