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
No related merge requests found
......@@ -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>
......
module.exports = {
publicPath: './'
};
\ No newline at end of file
publicPath: './',
configureWebpack: {
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