diff --git a/ui/public/index.html b/ui/public/index.html
index 03d6175cb1620d1ba06c0b272dc57c5fb8577456..536cbd04f9dacf58d9b020ff407d51e8c525b7cc 100644
--- a/ui/public/index.html
+++ b/ui/public/index.html
@@ -7,9 +7,9 @@
   <meta name="viewport" content="width=device-width,initial-scale=1.0">
   <link rel="icon" href="<%= BASE_URL %>favicon.ico">
   <link href="https://fonts.googleapis.com/css?family=Raleway:400,400i,700,700i" rel="stylesheet">
-  <link rel="stylesheet" href="<%= BASE_URL %>/static/css/bootstrap.min.css">
-  <link rel="stylesheet" href="<%= BASE_URL %>/static/css/style.css">
-  <link rel="stylesheet" href="<%= BASE_URL %>/static/css/tsa.css">
+  <link rel="stylesheet" href="<%= BASE_URL %>static/css/bootstrap.min.css">
+  <link rel="stylesheet" href="<%= BASE_URL %>static/css/style.css">
+  <link rel="stylesheet" href="<%= BASE_URL %>static/css/tsa.css">
   <title>Sello de Tiempo - Blockchain Federal Argentina</title>
 </head>
 
@@ -21,7 +21,7 @@
     <div class="container">
       <div class="navbar-header">
         <a class="logo navbar-btn pull-left" href="/" rel="home">
-          <img id="logo" src="<%= BASE_URL %>/static/images/logo.svg" alt="Blockchain Federal Argentina">
+          <img id="logo" src="<%= BASE_URL %>static/images/logo.svg" alt="Blockchain Federal Argentina">
         </a>
       </div>
     </div>
diff --git a/ui/vue.config.js b/ui/vue.config.js
index b5bad4bfd88e2981e914a0b2ffdc793e7c878c60..28ec2923af5987c0e7dbfb68f8ee5d504fc402d9 100644
--- a/ui/vue.config.js
+++ b/ui/vue.config.js
@@ -1,3 +1,12 @@
 module.exports = {
-  publicPath: './'
-};
\ No newline at end of file
+  publicPath: './',
+  configureWebpack: {
+    output: {
+      filename: 'tsa2.js'
+    },
+    optimization: {
+      splitChunks: false
+    },
+  },
+  filenameHashing: false
+};