The development tools Webapck5 error ReferenceError: echarts is not defined December 30, 2023 by 李依婷 No Comments Error cause: I use it directly in the index.html file in my project The solution 1. Download echart plug-in npm i -D echarts Copy the code 2. In js files that need to use Echarts const echarts = require('echarts') Copy the code