Deploying Quasar SSR App to Azure
-
Hi all,
Has anyone deployed to Azure Web App Quasar SSR?
After deployment, visiting the URL gives me a blanck screen with the following:
{{ Q_HEAD_TAGS }} {{ Q_BODY_TAGS }}.
Thanks -
@MGO13 I haven’t used Azure, but it sounds like the node process isn’t running, and instead you’re serving from
dist/ssr/www
. -
@beets , thanks for this answer. I have something to dig into.
Will keep this post updated after some more tests… -
@MGO13 Definitely report back in case anyone else finds themselves in this situation. The short of it is, that you need azure to start a node process running
dist/ssr/index.js
which will start a server onprocess.env.PORT
, or port 3000 if that env variable is not defined. Then I’m sure azure has some feature to proxy that to an ssl terminator.