Estoy intentando instalar Highcharts con npm en mi proyecto y me aparece este error
Error de referencia no detectado: Highcharts no está definido.
Seguí los documentos y no puedo dibujar un gráfico.
Esto está en mi app.js
var Highcharts = require('highcharts'); // Load module after Highcharts is loaded require('highcharts/modules/exporting')(Highcharts);y esto está en mi blade.php
<script> Highcharts.chart('container', { /Highcharts options/ }); </script>PD: he usado npm run dev pero todavía no funciona.