diff --git a/edivorce/apps/core/management/commands/npm_build.py b/edivorce/apps/core/management/commands/npm_build.py
new file mode 100644
index 00000000..2cbd7918
--- /dev/null
+++ b/edivorce/apps/core/management/commands/npm_build.py
@@ -0,0 +1,11 @@
+import os
+
+from django.contrib.staticfiles.management.commands.runserver import (
+ Command as NpmBuildCommand,
+)
+
+class Command(NpmBuildCommand):
+
+ def run(self, **options):
+ os.system("npm --prefix /opt/app-root/src/vue install /opt/app-root/src/vue --loglevel info")
+ os.system("npm --prefix /opt/app-root/src/vue run build")
\ No newline at end of file
diff --git a/edivorce/apps/core/templates/base.html b/edivorce/apps/core/templates/base.html
index 52f5b8bd..e1555c3a 100644
--- a/edivorce/apps/core/templates/base.html
+++ b/edivorce/apps/core/templates/base.html
@@ -18,6 +18,8 @@
{% endcompress %}
+ {% block extra_css %}
+ {% endblock %}
{% include 'partials/gtm_head.html' %}
+