有人可以告诉我我在做什么错吗? 我使用angular-seed开始了angularjs项目。 我使用NPM安装了引导程序。 现在,我正在尝试向位于“ node_modules”中的引导文件添加方向,并收到以下错误:
http://localhost:8000/node_modules/bootstrap/dist/css/bootstrap.css净值:: ERR_ABORTED 404(未找到) http://localhost:8000/node_modules/bootstrap/dist/js/bootstrap.js net :: ERR_ABORTED 404(未找到) enter image description here
app.js angular.module('appName', [ 'ngRoute', 'appName.home' ])
.config(['$locationProvider', '$routeProvider', function($locationProvider, $routeProvider) {
// $locationProvider.hashPrefix('!');
$routeProvider.otherwise({redirectTo: '/home'});
}]);
index.html我添加了
<link rel="stylesheet" href="/node_modules/bootstrap/dist/css/bootstrap.css">
<script src="/node_modules/bootstrap/dist/js/bootstrap.js"></script>