shortwave You could export for the web and run it on a http server on your computer. That would allow you to connect from your phone over the local network. There's plenty of options for HTTP servers depending on your level of experience.
In terms of simple ones there's applications like:
MAMPhttps://www.mamp.info/en/
XAMPPhttps://www.apachefriends.org/index.html
If your worried they are a little too heavyweight you could use:
NGINXhttps://www.nginx.com/resources/wiki/start/topics/tutorials/install/
Apachehttps://httpd.apache.org/
If your comfortable with a bit of command line then you could use:
Python SimpleHTTPServerhttp://2ality.com/2014/06/simple-http-server.html
Or for something a little more custom:
Node.js http modulehttps://nodejs.org/api/http.html
Once you have a server set up all you need to do is to copy the export into the servers root folder and type in it's address on your phone. It's slower than using remote preview but it's still fairly fast. In the past I've used all of the above for various things, MAMP was probably the easiest to set up but it does include a database engine and PHP which you don't really need. If you know JavaScript then you can create a simple HTTP server in Node.js with 10 lines of code.