From 4eb65c014a5117573957116bb3246af2963433c8 Mon Sep 17 00:00:00 2001 From: Kyle J Date: Wed, 11 May 2022 07:52:29 -0700 Subject: [PATCH] Correct auto.esm.js import to allow use directly from the browser --- auto/auto.esm.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auto/auto.esm.js b/auto/auto.esm.js index 42626764a8b..8111b89a896 100644 --- a/auto/auto.esm.js +++ b/auto/auto.esm.js @@ -1,4 +1,4 @@ -import {Chart, registerables} from '../dist/chart.esm'; +import {Chart, registerables} from '../dist/chart.esm.js'; Chart.register(...registerables);