Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions client/.env
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
VUE_APP_API=https://cotizaciones.volpe.com.py/api
VUE_APP_SWAGGER=https://cotizaciones.volpe.com.py/swagger-ui/index.html
VITE_API=https://cotizaciones.volpe.com.py/api
VITE_SWAGGER=https://cotizaciones.volpe.com.py/swagger-ui/index.html
PORT=8081
4 changes: 2 additions & 2 deletions client/.env.development
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
VUE_APP_API=http://localhost:8080/api
VUE_APP_SWAGGER=http://localhost:8080/swagger-ui/index.html
VITE_API=http://localhost:8080/api
VITE_SWAGGER=http://localhost:8080/swagger-ui/index.html
PORT=8081
33 changes: 33 additions & 0 deletions client/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<!DOCTYPE html>
<html lang="es">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-84291651-2"></script>
<script>
window.dataLayer = window.dataLayer || [];

function gtag() {
dataLayer.push(arguments);
}

gtag('js', new Date());

gtag('config', 'UA-84291651-2', 'auto');
</script>

<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons" rel="stylesheet">
<title>Cotizaciones en el Paraguay</title>
</head>
<body>
<noscript>
<strong>
Esta pagina solo funciona con JavaScript, para mas info ve a <a href="https://github.com/avolpe/cotizacion">github</a>
</strong>
</noscript>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>
Loading