2017-06-20 91 views
2

我嘗試在Symfony中使用Encore。第一個示例Encore - 路徑必須是字符串。收到undefined

First example

我運行命令:

./node_modules/.bin/encore dev 

,這回我的錯誤:

path.js:7 
    throw new TypeError('Path must be a string. Received ' + inspect(path)); 
    ^

TypeError: Path must be a string. Received undefined 
    at assertPath (path.js:7:11) 
    at Object.join (path.js:1211:7) 
    at find (/www/testencore/node_modules/babel-loader/lib/resolve-rc.js:11:21) 
    at module.exports (/www/testencore/node_modules/@symfony/webpack-encore/lib/config/parse-runtime.js:64:47) 
    at Object.<anonymous> (/www/testencore/node_modules/@symfony/webpack-encore/bin/encore.js:18:23) 
    at Module._compile (module.js:570:32) 
    at Object.Module._extensions..js (module.js:579:10) 
    at Module.load (module.js:487:32) 
    at tryModuleLoad (module.js:446:12) 
    at Function.Module._load (module.js:438:3) 

回答

2

您的問題與巴別塔型裝載機V7.1做。 (CFR。https://github.com/symfony/webpack-encore/issues/40

可以通過添加下面一行到你的package.json

"babel-loader": "7.0" 

後解決這個問題這確保運行yarn upgrade,的WebPack-安可應該重新工作。

請注意,這是一個臨時修復。你應該留意github問題,看看是否有永久修復。

編輯:這已被修復,因爲Encore 0.9.1,更新應該解決問題。

+1

請注意,有一個命令'yarn upgrade',而不是刪除鎖定文件並重新構建它。 – user254319

+0

確實更乾淨,更新了答案,謝謝:) –

相關問題