2017-09-11 11 views
0

jQuery 및 부트 스트랩 프레임 워크를 포함하기 위해 루트 경로에있는 위치 인 서브 bower_components 디렉토리를 시도합니다. 노드는 기본 공개 디렉토리를 제공합니다. 아래는 내 스 니펫 코드이지만 작동하지 않습니다. 부트 스트랩 프레임 워크와 jQuery를 올바르게 설치했습니다. 나는 관목을 사용했다. 내가 뭘 잘못 했니? 당신이 당신이 bower_components 내에서 실제 폴더에 연결해야 이런 식으로하고 싶은 경우feathersjs를 사용하여 Node.js에서 bower_components를 제공하는 방법은 무엇입니까?

app.use('/', feathers.static(app.get('public'))) 
.use('jquery', feathers.static(__dirname + '../../bower_components')) 
.use('bootstrap', feathers.static(__dirname + '../../bower_components')); 

답변

0

가 :

const path = require('path'); 
const bowerComponents = path.join(__dirname, '..', '..', 'bower_components'); 

app.use('/', feathers.static(app.get('public'))) 
    .use('/jquery', feathers.static(path.join(bowerComponents, 'jquery')) 
    .use('/bootstrap', feathers.static(path.join(bowerComponents, 'bootstrap'))); 
+0

감사 다프을, 나는이 방법으로 관리 : app.use를 ('/' , feathers.static (app.get ('public'))) .use (feathers.static (path.join (__ dirname, '..', 'bower_components')))); – SeaDog