From 67fe0b8e29295b51493dfb6c059b158a79def619 Mon Sep 17 00:00:00 2001 From: charlie Date: Mon, 8 Nov 2021 18:22:12 +0800 Subject: [PATCH] fix(dev): load npm `path.js` lib instead of internal `path` lib from shadow-cljs --- src/main/frontend/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/frontend/utils.js b/src/main/frontend/utils.js index c7e8bac36..ad2f71801 100644 --- a/src/main/frontend/utils.js +++ b/src/main/frontend/utils.js @@ -1,4 +1,4 @@ -import path from 'path' +import path from 'path/path.js' if (typeof window === 'undefined') { global.window = {}