app didn't start

EmoteGrid isn't loading

You're seeing this because the page loaded but its JavaScript never ran. The three usual causes:

  1. The wrong folder was uploaded. Upload the single file dist/index.html — not the project folder. The project's own index.html points at /src/main.tsx, which only works while running npm run dev. Run npm run build first.
  2. A Content-Security-Policy is blocking inline scripts. The whole app is inlined into one file, so the host must allow script-src 'unsafe-inline'. Check for a .htaccess or security plugin adding CSP headers.
  3. The file was served as the wrong type. It must be sent as text/html, not text/plain or a download.

Open your browser's console (F12) — any error there will name the real cause.