我使用了generator-angular-fullstack,我已经在Heroku上部署了所有的工作。但是我试图添加一些模块(angular-bootstrap),当我尝试在Heroku上部署时,我遇到了这个问题:
Uncaught SyntaxError: Unexpected token < 8e80b874.vendor.js:1
Uncaught SyntaxError: Unexpected token < e1807e47.scripts.js:1
这是我在Heroku上部署的步骤(第一次):
>> grunt build
>> cd dist
>> git push heroku master
>> heroku ps:scale web=1
>> heroku config:add NODE_ENV=production
>> heroku open
这是我在Heroku上更新项目的步骤:
>> grunt build
>> cd dist
>> git commit -m "commit coment"
>> git push heroku master
>> heroku open
问题是当我尝试在我的角度项目中添加一些模块('ui-router','ui.bootstrap')时,在本地工作中完美无缺,但是当我在Heroku上部署时,我遇到了问题:
未捕获的SyntaxError:意外的令牌&lt; 8e80b874.vendor.js:1
我试图在heroku中设置paht:
heroku config:set NODE_PATH=lib
并强制在我的dist文件夹中添加lib文件夹
git add -f lib/
我迷路了......任何想法? THX