web-dev-qa-db-ja.com

TypeError:「undefined」または「null」のプロパティ「compile」を分解できません

再現手順:スクリーンショットに従ってオプションを選択してvue init webpack myappを実行します。

enter image description here

その後、次のように出力されました:

enter image description here

npm run devまたはnpm audit fix --forceおよびnpm install --save-dev [email protected]で取得するnpm install --save-dev [email protected]またはnpm auditを実行しなくても正常に動作します

enter image description here

修正してnpm run devを実行すると、エラーは発生しません。

enter image description here

次に、出力で推奨されているようにnpm i -D webpack-cliを実行します。

ただし、npm run devを実行すると、次のエラーが発生します。

enter image description here

この問題を解決する方法がわかりません...

11
Askar

問題はwebpack-dev-serverにあり、本番環境では使用しないでください。そのため、これに脆弱性があることは一般的に安全です(依存パッケージがバージョン3.1をサポートするように更新されるまで)

npm install -D [email protected]
16
Trent