Skip to content
Snippets Groups Projects
Commit 5f697d61 authored by Otto Zaiser's avatar Otto Zaiser
Browse files

Cambiando path relativo static y haciendo que compile el js sobre el mismo filename

parent 26f5d996
No related branches found
No related tags found
1 merge request!3Markup
...@@ -7,9 +7,9 @@ ...@@ -7,9 +7,9 @@
<meta name="viewport" content="width=device-width,initial-scale=1.0"> <meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="icon" href="<%= BASE_URL %>favicon.ico"> <link rel="icon" href="<%= BASE_URL %>favicon.ico">
<link href="https://fonts.googleapis.com/css?family=Raleway:400,400i,700,700i" rel="stylesheet"> <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/bootstrap.min.css">
<link rel="stylesheet" href="<%= BASE_URL %>/static/css/style.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/tsa.css">
<title>Sello de Tiempo - Blockchain Federal Argentina</title> <title>Sello de Tiempo - Blockchain Federal Argentina</title>
</head> </head>
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
<div class="container"> <div class="container">
<div class="navbar-header"> <div class="navbar-header">
<a class="logo navbar-btn pull-left" href="/" rel="home"> <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> </a>
</div> </div>
</div> </div>
......
module.exports = { module.exports = {
publicPath: './' publicPath: './',
}; configureWebpack: {
\ No newline at end of file output: {
filename: 'tsa2.js'
},
optimization: {
splitChunks: false
},
},
filenameHashing: false
};
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment