2016-04-19 45 views
2

當我npm run dev一個反應過來的項目,遇到類似這樣的錯誤:未處理拒絕錯誤:無效的路徑

Unhandled rejection Error: Invalid path './dist/' 

有人告訴我,我應該嘗試絕對路徑,但這個錯誤再次躺在那裏。

Unhandled rejection Error: Invalid path '/path/to/dist/' 

我很困惑〜有人遇到過這個問題嗎?

const output = { 
    path: './dist/', 
    filename: 'bundle.js', 
    publicPath: '../' 
}; 

回答

0

我覺得在你通往./可能是問題。作爲變通,你可以嘗試這樣的事:

path: require("path").resolve("./dist") 

而且,從錯誤信息,我覺得你使用絕對路徑是行不通的,因爲它也具有領先.

相關問題