To use AppRun for applications that support IE 11, you will need:
- Polyfills for Promise and string.startsWith , e.g., using https://polyfill.io
<script src="https://polyfill.io/v3/polyfill.min.js?features=String.prototype.startsWith%2CPromise"></script>
- Use window.onhashchange in main.tsx
if (!window.onpopstate) window.onhashchange = () => app.route(location.hash);
- Use npm start to start the dev server
- Use npm run build to build for production
This is an application built with AppRun.