You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 14, 2026. It is now read-only.
I'm trying to use jsnes-web on a github pages site. I'm doing so with the gh-pages package. I've used gh-pages to successfully deploy a react site in the past.
Prior to deployment I've added a line to the package.json (as per gh-pages instructions)
"homepage": ".",
I've used the following to build and deploy (from the root of jsnes-web)
npm run build
npx gh-pages -d dist
This appears to work. And if I run
npx serve build
I see a working version of the site (locally). When i browse to the corresponding site though, I get a blank page.
Does anybody have any thoughts on why this doesn't work? I would expect to at least see the main title screen which lets me pick a rom. But instead I get nothing. I've also checked the js console and there's no output worth mentioning.