webpack打包錯誤:No configuration file found and no output filename configured via CLI option.
阿新 • • 發佈:2021-01-27
webpack打包報錯:當我將webpack.config.js中的內容進行開發和執行分離後,又將webpack.config.js該檔案刪除,執行打包報如下錯誤:
No configuration file found and no output filename configured via CLI option.
A configuration file could be named ‘webpack.config.js’ in the current directory.
原因是,沒有在package.json檔案中配置路徑,打包檔案的入口出口等,還是去原來的webpack.config.js中找,因此在package.json配置如下程式碼:
"build": "webpack --config ./build/prod.config.js",
"dev": "webpack-dev-server --open --config ./build/dev.config.js"
其中build和dev是自己按照習慣起的名字,build是釋出(執行)時的命令。
dev時本地執行測試的命令。
右側劃線部分時我分離webpack.config.js的時候建立的檔案路徑。