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
The current instructions for running onnxruntime-web use the command npx light-server -s . -p 8080, but this depends on the light-server package, which is deprecated and unmaintained. See https://github.com/txchen/light-server?tab=readme-ov-file
A possible solution is to use lite-server instead, which is a lightweight and customized version of BrowserSync that also offers a static server and live reload. See https://www.npmjs.com/package/lite-server
The steps to use lite-server are:
Install it as a dev dependency with npm install lite-server --save-dev or yarn add lite-server --dev
Run it with npx lite-server
It will open the default browser on the page of the static server created