13 lines
323 B
JavaScript
13 lines
323 B
JavaScript
import './bootstrap';
|
|
import './login-effects';
|
|
import './register-effects';
|
|
import { Chart, registerables } from 'chart.js';
|
|
|
|
Chart.register(...registerables);
|
|
|
|
// Expose Chart globally so Blade inline <script> can create charts
|
|
// without needing a separate import per page.
|
|
window.Chart = Chart;
|
|
|
|
window.__clupilot = 1;
|