Cannot read properties of undefined (reading 'hooks')
时间: 2023-10-15 10:26:09 浏览: 174
这个错误信息是在JavaScript中遇到的一种常见错误。它表示在代码中尝试访问一个未定义的属性。在你提供的引用中,错误信息是"Cannot read properties of undefined (reading 'hooks')"。
根据引用的代码片段,错误发生在terser-webpack-plugin的index.js文件的第763行。这个错误发生在尝试获取webpack的javascript模块插件的hooks时。hooks是一个对象,但是由于compiler.webpack.javascript是undefined,所以不能访问它的hooks属性。
要解决这个问题,你可以参考引用提供的解决方案。根据引用的描述,这个问题是由于terser-webpack-plugin的版本与webpack@4不兼容导致的。你可以尝试使用npm uninstall terser-webpack-plugin命令卸载当前的terser-webpack-plugin版本,然后使用npm install terser-webpack-plugin@4.2.3命令重新安装一个与webpack@4兼容的版本。这样应该可以解决你遇到的问题。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *3* [TypeError: Cannot read properties of undefined (reading ‘javascript‘)](https://blog.csdn.net/qq_24504591/article/details/125070013)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_1"}}] [.reference_item style="max-width: 50%"]
- *2* [vue-router的hooks用法详解](https://download.csdn.net/download/weixin_38742409/12925572)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_1"}}] [.reference_item style="max-width: 50%"]
[ .reference_list ]
阅读全文