vuedo
vuedo copied to clipboard
Blank dashboard page
after logging into dashboadr, blank white page is displayed. php rewrite mode is on, debug is set true. i'm running on xampp for windows
Have the same problem. Seems that the production *.js files are excluded from the commit. So either you need to run gulp --production on your production environment (if you have gulp there). Better is to commit them with the release, but that's quite complicated because they have unique (and changing) names with a hash, like main-4e2eacebdc.js. I'm not sure how this is was supposed to work...
I 'solved' this by removing the versioning altogether. Just remove the mix.version
line from the gulpfile.js
, and remove public/js/main.js
and public/js/theme.js
from the .gitignore
file.
Then run gulp
and make sure to commit those .js
files.