Game Setup and Config How to create a Phaser.Game instance with the right GameConfig options for renderer, scaling, pixel art, FPS, and canvas placement. Key source paths: , , , , Related skills: ../scenes/SKILL.md, ../loading-assets/SKILL.md, ../scale-and-responsive/SKILL.md Quick Start The simplest possible Phaser 4 game -- a single scene with the default 1024×768 canvas: triggers the entire boot sequence: config parsing ( ), renderer creation, DOM insertion, and the game loop ( ). The game waits for before booting. Core Concepts Boot Sequence (src/core/Game.js) 1. -- parses config into a i…