[Vuejs]-Deploying Vue app with apache vhost shows white page

0๐Ÿ‘

โœ…

I just solved the problem for anyone who has the same issues in the future.

I needed to specify the root path as DIST not as PUBLIC:

...
DocumentRoot /var/www/client/pvapp-client/dist

<Directory /var/www/client/pvapp-client/dist>
...

Leave a comment