aboutsummaryrefslogtreecommitdiffstats
path: root/src/js/utilities
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2021-10-31 22:03:04 +0100
committerArmand Philippot <git@armandphilippot.com>2021-10-31 22:03:04 +0100
commitc64a7bd26fefb53aee53667cf33e2c72b7d07311 (patch)
tree332cac2337dd4b9c1b11e98683240274731bbb19 /src/js/utilities
parent3be752d822e12a34ff388b98f8654ab02a8ea586 (diff)
build: use php dotenv instead of js to inject style.js in dev mode
Diffstat (limited to 'src/js/utilities')
-rw-r--r--src/js/utilities/helpers.js13
1 files changed, 2 insertions, 11 deletions
diff --git a/src/js/utilities/helpers.js b/src/js/utilities/helpers.js
index 470c49c..8cc88c9 100644
--- a/src/js/utilities/helpers.js
+++ b/src/js/utilities/helpers.js
@@ -6,14 +6,5 @@ function isSmallVw() {
return window.innerWidth < 1200;
}
-/**
- * Check if /assets/styles.js exists (Webpack dev mode).
- * @returns {Boolean} True if style.js exists ; false otherwise.
- */
-async function isStyleJsExists() {
- const filePath = 'assets/js/style.js';
- const response = await fetch(filePath);
- return response.status === 200;
-}
-
-export { isSmallVw, isStyleJsExists };
+// eslint-disable-next-line import/prefer-default-export
+export { isSmallVw };