-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Blank page after gulp serve:dist #6
Comments
looks like bower install didn't run - which is the obvious solution for all BUT the vendor.css problem ... |
Had the same problem. Any update? |
I had same problem - the issue is the bower components are in the "app" folder and not copied into the I'm sure there is a better way - by updating the build process.. |
And a step better: Add this task in gulp/build.js: gulp.task('bowerjs', function() { Then add 'bowerjs' in the last build task at the end like below: That will copy the files from the app folder to the dist folder on the gulp command, then run gulp serve:dist This still isn't optimal but better, ideally you wire it up with wiredep but I haven't sorted that yet.. |
After following The More Powerful Way on a clean directory, doesn't work since
|
Working with a clean clone of the repository I run the following:
git pull origin master
npm install
gulp watch
gulp
gulp serve:dist
Via the browser console I get the following errors:
Obviously I am able to resolve all but the vendor.css error by just placing all the missing scripts in the appropriate dist folder but I do not think that is an intended fix. Thoughts?
The text was updated successfully, but these errors were encountered: