aboutsummaryrefslogtreecommitdiffstats
path: root/htdocs/src/js/app.js
diff options
context:
space:
mode:
Diffstat (limited to 'htdocs/src/js/app.js')
-rw-r--r--htdocs/src/js/app.js22
1 files changed, 22 insertions, 0 deletions
diff --git a/htdocs/src/js/app.js b/htdocs/src/js/app.js
new file mode 100644
index 0000000..1b7bbc6
--- /dev/null
+++ b/htdocs/src/js/app.js
@@ -0,0 +1,22 @@
+import { isStyleJsExists } from './utilities/helpers';
+
+/**
+ * Add style.js script for development purposes.
+ */
+function loadWebpackStyles() {
+ if (isStyleJsExists()) {
+ const head = document.querySelector('head');
+ const script = document.createElement('script');
+ script.src = 'assets/js/style.js';
+ head.appendChild(script);
+ }
+}
+
+/**
+ * Initialize the website with the projects list.
+ */
+function init() {
+ loadWebpackStyles();
+}
+
+init();