Hendrixer / generator-ng-express

Yo generator for easy, simple. minimal, angular + express + mongo. MEAN.
23 stars 11 forks source link

wrong paths in app/client/index.html scripts #5

Open mellema opened 10 years ago

mellema commented 10 years ago

I used this generator to do a "quick" build, no custom options selected. When I ran Gulp and went to localhost:9000 I got a blank page and some 404s in the console due to errors in lines 17,18, and 19 of the index.html page. Here's the original lines:

<script src="lib/gsap/src/uncompressed/TweenMax.js"></script>
<script src="lib/ng-Fx/dist/ng-Fx.js"></script>

The first 2 lines are no longer necessary, and causing errors. TweenMax and animate were concatenated into the ngFX.js file. The last line has an extra dash in it. It should read:

mellema commented 10 years ago

generatorerrorjpg

timveletta commented 9 years ago

When I tried to do a quick build, I also had a blank page however it was because TweenMax wasn't found anywhere. I added in the line <script src="lib/gsap/src/uncompressed/TweenMax.js"></script> into index.html and it worked fine.