我正在尝试创建我的第一个Angular / laravel SPA,并且我仍然试图获得附加的依赖项。我不知道是否适当将整个内容复制到公共文件夹中。
如何做到这一点?
我尝试使用./path脚本来引用脚本,但这似乎没有用。
<!-- Application Dependencies -->
<script src="node_modules/angular/angular.js"></script>
<script src="node_modules/angular-ui-router/build/angular-ui-router.js"></script>
<script src="node_modules/satellizer/satellizer.js"></script>
<!-- Application Scripts -->
<script src="scripts/app.js"></script>
<script src="scripts/authController.js"></script>
<script src="scripts/userController.js"></script>
我用npm来获取我的包,所以所有文件都在应用程序根目录下的文件夹中。
由于
答案 0 :(得分:0)
我遇到了同样的问题,我用bower而不是npm来修复。
从命令行:
npm install bower
bower install angular
....